Page 1 of 3

Mod Gearman Performance Issues Nagios 2014R2.6

Posted: Tue Mar 24, 2015 7:03 am
by rajasegar
Before Upgrade
Nagios 2014R1.2 with check_gearman: version 1.4_nagios4 running on libgearman 0.25
Everything was scheduling fine.

After upgrade
Nagios 2014R2.6 with check_gearman: version 1.5.0b1 running on libgearman 1.1.8
Serious scheduling issues howering most of the time around 60 and rare bursts around 800.
CPU seems OK, Memory seems ok so it must be some other bottleneck.
NDOUtils ok, no crashed tables in MySQL.

Can someone advice if there is any specific tuning that needs to be done to get the scheduling back to normal?
Monitoring setup details
- All active checks
- Large number of perl based checks
- 1779 hosts
- 14034 services
- Most checks 5 minute interval.

I have changed all the CPU and Memory checks to 10 minutes interval which resulted with some improvement.
Not sure how long this will last. Based on whats been happening recently, the next apply configuration will bring the scheduling down to about 60 again.
After a few Apply Configurations, it will be back to ok for a while ????
2015-03-24_19-58-57.png

Code: Select all

2015-03-24 19:55:11  -  localhost:4730  -  v1.1.8

 Queue Name           | Worker Available | Jobs Waiting | Jobs Running
-----------------------------------------------------------------------
 check_results        |               2  |           0  |           0
 eventhandler         |              75  |           0  |           0
 host                 |              75  |           0  |           1
 service              |              75  |           0  |          14
 worker_nagiosprodxi1 |               1  |           0  |           0
-----------------------------------------------------------------------

Code: Select all

[nagios@nagiosprodxi1 mod_gearman]$ cat mod_gearman_neb.conf
###############################################################################
#
#  Mod-Gearman - distribute checks with gearman
#
#  Copyright (c) 2010 Sven Nierlein
#
#  Mod-Gearman NEB Module Config
#
###############################################################################

# use debug to increase the verbosity of the module.
# Possible values are:
#     0 = only errors
#     1 = debug messages
#     2 = trace messages
#     3 = trace and all gearman related logs are going to stdout.
# Default is 0.
debug=0

# Path to the logfile.
logfile=/var/log/mod_gearman/mod_gearman_neb.log

# sets the addess of your gearman job server. Can be specified
# more than once to add more server.
server=localhost:4730


# sets the address of your 2nd (duplicate) gearman job server. Can
# be specified more than once o add more servers.
#dupserver=<host>:<port>


# defines if the module should distribute execution of
# eventhandlers.
eventhandler=yes


# defines if the module should distribute execution of
# service checks.
services=yes


# defines if the module should distribute execution of
# host checks.
hosts=yes


# sets a list of hostgroups which will go into seperate
# queues. Either specify a comma seperated list or use
# multiple lines.
#hostgroups=LOAD_BALANCER_MSB
#hostgroups=name2,name3


# sets a list of servicegroups which will go into seperate
# queues.
#servicegroups=name1,name2,name3

# Set this to 'no' if you want Mod-Gearman to only take care of
# servicechecks. No hostchecks will be processed by Mod-Gearman. Use
# this option to disable hostchecks and still have the possibility to
# use hostgroups for easy configuration of your services.
# If set to yes, you still have to define which hostchecks should be
# processed by either using 'hosts' or the 'hostgroups' option.
# Default is Yes.
do_hostchecks=yes

# This settings determines if all eventhandlers go into a single
# 'eventhandlers' queue or into the same queue like normal checks
# would do.
route_eventhandler_like_checks=no

# enables or disables encryption. It is strongly
# advised to not disable encryption. Anybody will be
# able to inject packages to your worker.
# Encryption is enabled by default and you have to
# explicitly disable it.
# When using encryption, you will either have to
# specify a shared password with key=... or a
# keyfile with keyfile=...
# Default is On.
encryption=yes


# A shared password which will be used for
# encryption of data pakets. Should be at least 8
# bytes long. Maximum length is 32 characters.
key=should_be_changed


# The shared password will be read from this file.
# Use either key or keyfile. Only the first 32
# characters will be used.
#keyfile=/path/to/secret.file


# use_uniq_jobs
# Using uniq keys prevents the gearman queues from filling up when there
# is no worker. However, gearmand seems to have problems with the uniq
# key and sometimes jobs get stuck in the queue. Set this option to 'off'
# when you run into problems with stuck jobs but make sure your worker
# are running.
use_uniq_jobs=on



###############################################################################
#
# NEB Module Config
#
# the following settings are for the neb module only and
# will be ignored by the worker.
#
###############################################################################

# sets a list of hostgroups which will not be executed
# by gearman. They are just passed through.
# Default is none
localhostgroups=


# sets a list of servicegroups which will not be executed
# by gearman. They are just passed through.
# Default is none
localservicegroups=

# The queue_custom_variable can be used to define the target queue
# by a custom variable in addition to host/servicegroups. When set
# for ex. to 'WORKER' you then could define a '_WORKER' custom
# variable for your hosts and services to directly set the worker
# queue. The host queue is inherited unless overwritten
# by a service custom variable. Set the value of your custom
# variable to 'local' to bypass Mod-Gearman (Same behaviour as in
# localhostgroups/localservicegroups).
#queue_custom_variable=WORKER

# Number of result worker threads. Usually one is
# enough. You may increase the value if your
# result queue is not processed fast enough.
# Default: 1
result_workers=2


# defines if the module should distribute perfdata
# to gearman.
# Note: processing of perfdata is not part of
# mod_gearman. You will need additional worker for
# handling performance data. For example: pnp4nagios
# Performance data is just written to the gearman
# queue.
# Default: no
perfdata=no

# perfdata mode overwrite helps preventing the perdata queue getting to big
# 1 = overwrote
# 2 = append
perfdata_mode=1

# The Mod-Gearman NEB module will submit a fake result for orphaned host
# checks with a message saying there is no worker running for this
# queue. Use this option to get better reporting results, otherwise your
# hosts will keep their last state as long as there is no worker
# running.
# Default: yes
orphan_host_checks=yes

# Same like 'orphan_host_checks' but for services.
# Default: yes
orphan_service_checks=yes

# When accept_clear_results is enabled, the NEB module will accept unencrypted
# results too. This is quite useful if you have lots of passive checks and make
# use of send_gearman/send_multi where you would have to spread the shared key to
# all clients using these tools.
# Default is no.
accept_clear_results=no

Code: Select all

[nagios@nagiosprodxi1 mod_gearman]$ cat mod_gearman_worker.conf
###############################################################################
#
#  Mod-Gearman - distribute checks with gearman
#
#  Copyright (c) 2010 Sven Nierlein
#
#  Worker Module Config
#
###############################################################################

# Identifier, hostname will be used if undefined
#identifier=hostname

# use debug to increase the verbosity of the module.
# Possible values are:
#     0 = only errors
#     1 = debug messages
#     2 = trace messages
#     3 = trace and all gearman related logs are going to stdout.
# Default is 0.
debug=0

# Path to the logfile.
logfile=/var/log/mod_gearman/mod_gearman_worker.log

# sets the addess of your gearman job server. Can be specified
# more than once to add more server.
server=localhost:4730


# sets the address of your 2nd (duplicate) gearman job server. Can
# be specified more than once o add more servers.
#dupserver=<host>:<port>


# defines if the module should distribute execution of
# eventhandlers.
eventhandler=yes


# defines if the module should distribute execution of
# service checks.
services=yes


# defines if the module should distribute execution of
# host checks.
hosts=yes


# sets a list of hostgroups which will go into seperate
# queues. Either specify a comma seperated list or use
# multiple lines.
#hostgroups=name1
#hostgroups=name2,name3


# sets a list of servicegroups which will go into seperate
# queues.
#servicegroups=name1,name2,name3

# Set this to 'no' if you want Mod-Gearman to only take care of
# servicechecks. No hostchecks will be processed by Mod-Gearman. Use
# this option to disable hostchecks and still have the possibility to
# use hostgroups for easy configuration of your services.
# If set to yes, you still have to define which hostchecks should be
# processed by either using 'hosts' or the 'hostgroups' option.
# Default is Yes.
do_hostchecks=yes

# enables or disables encryption. It is strongly
# advised to not disable encryption. Anybody will be
# able to inject packages to your worker.
# Encryption is enabled by default and you have to
# explicitly disable it.
# When using encryption, you will either have to
# specify a shared password with key=... or a
# keyfile with keyfile=...
# Default is On.
encryption=yes


# A shared password which will be used for
# encryption of data pakets. Should be at least 8
# bytes long. Maximum length is 32 characters.
key=should_be_changed


# The shared password will be read from this file.
# Use either key or keyfile. Only the first 32
# characters will be used.
#keyfile=/path/to/secret.file


###############################################################################
#
# Worker Config
#
# the following settings are for the worker only and
# will be ignored by the neb module.
#
###############################################################################

# Path to the pidfile. Usually set by the init script
#pidfile=/var/mod_gearman/mod_gearman_worker.pid

# Default job timeout in seconds. Currently this value is only used for
# eventhandler. The worker will use the values from the core for host and
# service checks.
job_timeout=60

# Minimum number of worker processes which should
# run at any time.
min-worker=10

# Maximum number of worker processes which should
# run at any time. You may set this equal to
# min-worker setting to disable dynamic starting of
# workers. When setting this to 1, all services from
# this worker will be executed one after another.
max-worker=400

# Time after which an idling worker exists
# This parameter controls how fast your waiting workers will
# exit if there are no jobs waiting.
idle-timeout=20

# Controls the amount of jobs a worker will do before he exits
# Use this to control how fast the amount of workers will go down
# after high load times
max-jobs=10000

# max-age is the threshold for discarding too old jobs. When a new job is older
# than this amount of seconds it will not be executed and just discarded. Set to
# zero to disable this check.
#max-age=0

# defines the rate of spawned worker per second as long
# as there are jobs waiting
spawn-rate=50

# Use this option to disable an extra fork for each plugin execution. Disabling
# this option will reduce the load on the worker host but can lead to problems with
# unclean plugin. Default: yes
fork_on_exec=no

# Use this option to show stderr output of plugins too.
# Default: yes
show_error_output=yes

# Use dup_results_are_passive to set if the duplicate result send to the dupserver
# will be passive or active.
# Default is yes (passive).
#dup_results_are_passive=yes

# When embedded perl has been compiled in, you can use this
# switch to enable or disable the embedded perl interpreter.
enable_embedded_perl=on

# Default value used when the perl script does not have a
# "nagios: +epn" or "nagios: -epn" set.
# Perl scripts not written for epn support usually fail with epn,
# so its better to set the default to off.
use_embedded_perl_implicitly=off

# Cache compiled perl scripts. This makes the worker process a little
# bit bigger but makes execution of perl scripts even faster.
# When turned off, Mod-Gearman will still use the embedded perl
# interpreter, but will not cache the compiled script.
use_perl_cache=on

# path to p1 file which is used to execute and cache the
# perl scripts run by the embedded perl interpreter
p1_file=/usr/share/mod_gearman/mod_gearman_p1.pl


# Workarounds

# workaround for rc 25 bug
# duplicate jobs from gearmand result in exit code 25 of plugins
# because they are executed twice and get killed because of using
# the same ressource.
# Sending results (when exit code is 25 ) will be skipped with this
# enabled.
workaround_rc_25=off
The max values of 400 for workers and 10000 for max jobs have no effect at all.
Need to revert back to 200 and 1000.

Code: Select all

[nagios@nagiosprodxi1 etc]$ cat nagios.cfg
# MODIFIED
admin_email=root@localhost
admin_pager=root@localhost
translate_passive_host_checks=1
log_event_handlers=0
use_large_installation_tweaks=1
enable_environment_macros=0


# NDOUtils module
broker_module=/usr/local/nagios/bin/ndomod.o config_file=/usr/local/nagios/etc/ndomod.cfg


# PNP settings - bulk mode with NCPD
process_performance_data=1
# service performance data
service_perfdata_file=/usr/local/nagios/var/service-perfdata
##service_perfdata_file=/var/nagiosramdisk/service-perfdata
service_perfdata_file_template=DATATYPE::SERVICEPERFDATA\tTIMET::$TIMET$\tHOSTNAME::$HOSTNAME$\tSERVICEDESC::$SERVICEDESC$\tSERVICEPERFDATA::$SERVICEPERFDATA$\tSERVICECHECKCOMMAND::$SERVICECHECKCOMMAND$\tHOSTSTATE::$HOSTSTATE$\tHOSTSTATETYPE::$HOSTSTATETYPE$\tSERVICESTATE::$SERVICESTATE$\tSERVICESTATETYPE::$SERVICESTATETYPE$\tSERVICEOUTPUT::$SERVICEOUTPUT$
service_perfdata_file_mode=a
service_perfdata_file_processing_interval=15
service_perfdata_file_processing_command=process-service-perfdata-file-bulk
# host performance data
host_perfdata_file=/usr/local/nagios/var/host-perfdata
##host_perfdata_file=/var/nagiosramdisk/host-perfdata
host_perfdata_file_template=DATATYPE::HOSTPERFDATA\tTIMET::$TIMET$\tHOSTNAME::$HOSTNAME$\tHOSTPERFDATA::$HOSTPERFDATA$\tHOSTCHECKCOMMAND::$HOSTCHECKCOMMAND$\tHOSTSTATE::$HOSTSTATE$\tHOSTSTATETYPE::$HOSTSTATETYPE$\tHOSTOUTPUT::$HOSTOUTPUT$
host_perfdata_file_mode=a
host_perfdata_file_processing_interval=15
host_perfdata_file_processing_command=process-host-perfdata-file-bulk


# OBJECTS - UNMODIFIED
#cfg_file=/usr/local/nagios/etc/objects/commands.cfg
#cfg_file=/usr/local/nagios/etc/objects/contacts.cfg
#cfg_file=/usr/local/nagios/etc/objects/localhost.cfg
#cfg_file=/usr/local/nagios/etc/objects/templates.cfg
#cfg_file=/usr/local/nagios/etc/objects/timeperiods.cfg


# STATIC OBJECT DEFINITIONS (THESE DON'T GET EXPORTED/IMPORTED BY NAGIOSQL)
cfg_dir=/usr/local/nagios/etc/static

# OBJECTS EXPORTED FROM NAGIOSQL
cfg_file=/usr/local/nagios/etc/contacttemplates.cfg
cfg_file=/usr/local/nagios/etc/contactgroups.cfg
cfg_file=/usr/local/nagios/etc/contacts.cfg
cfg_file=/usr/local/nagios/etc/timeperiods.cfg
cfg_file=/usr/local/nagios/etc/commands.cfg
cfg_file=/usr/local/nagios/etc/hostgroups.cfg
cfg_file=/usr/local/nagios/etc/servicegroups.cfg
cfg_file=/usr/local/nagios/etc/hosttemplates.cfg
cfg_file=/usr/local/nagios/etc/servicetemplates.cfg
cfg_file=/usr/local/nagios/etc/servicedependencies.cfg
cfg_file=/usr/local/nagios/etc/serviceescalations.cfg
cfg_file=/usr/local/nagios/etc/hostdependencies.cfg
cfg_file=/usr/local/nagios/etc/hostescalations.cfg
cfg_file=/usr/local/nagios/etc/hostextinfo.cfg
cfg_file=/usr/local/nagios/etc/serviceextinfo.cfg
cfg_dir=/usr/local/nagios/etc/hosts
cfg_dir=/usr/local/nagios/etc/services

# GLOBAL EVENT HANDLERS
global_host_event_handler=xi_host_event_handler
global_service_event_handler=xi_service_event_handler



# UNMODIFIED
accept_passive_host_checks=1
accept_passive_service_checks=1
additional_freshness_latency=15
auto_reschedule_checks=1
auto_rescheduling_interval=30
auto_rescheduling_window=45
bare_update_check=0
cached_host_check_horizon=15
cached_service_check_horizon=15
check_external_commands=1
check_for_orphaned_hosts=1
check_for_orphaned_services=1
check_for_updates=0
check_host_freshness=0
check_result_path=/usr/local/nagios/var/spool/checkresults
check_result_reaper_frequency=10
check_service_freshness=1
#command_check_interval=-1
command_file=/usr/local/nagios/var/rw/nagios.cmd
daemon_dumps_core=0
date_format=euro
debug_file=/usr/local/nagios/var/nagios.debug
debug_level=0
debug_verbosity=1
#enable_embedded_perl=0
enable_event_handlers=1
enable_flap_detection=1
enable_notifications=1
enable_predictive_host_dependency_checks=1
enable_predictive_service_dependency_checks=1
event_broker_options=-1
event_handler_timeout=60
execute_host_checks=1
execute_service_checks=1
#external_command_buffer_slots=4096
high_host_flap_threshold=20.0
high_service_flap_threshold=20.0
host_check_timeout=60
host_freshness_check_interval=60
host_inter_check_delay_method=s
illegal_macro_output_chars=`~$&|'"<>
illegal_object_name_chars=`~!$%^&*|'"<>?,()=
interval_length=60
lock_file=/usr/local/nagios/var/nagios.lock
log_archive_path=/usr/local/nagios/var/archives
log_external_commands=0
log_file=/usr/local/nagios/var/nagios.log
log_host_retries=1
log_initial_states=0
log_notifications=1
log_passive_checks=0
log_rotation_method=d
log_service_retries=1
low_host_flap_threshold=5.0
low_service_flap_threshold=5.0
max_check_result_file_age=3600
max_check_result_reaper_time=30
max_concurrent_checks=0
max_debug_file_size=1000000
max_host_check_spread=30
max_service_check_spread=30
nagios_group=nagios
nagios_user=nagios
notification_timeout=30
object_cache_file=/usr/local/nagios/var/objects.cache
#object_cache_file=/var/nagiosramdisk/objects.cache
obsess_over_hosts=0
obsess_over_services=0
ocsp_timeout=5
#p1_file=/usr/local/nagios/bin/p1.pl
passive_host_checks_are_soft=0
perfdata_timeout=10
precached_object_file=/usr/local/nagios/var/objects.precache
resource_file=/usr/local/nagios/etc/resource.cfg
retained_contact_host_attribute_mask=0
retained_contact_service_attribute_mask=0
retained_host_attribute_mask=0
retained_process_host_attribute_mask=0
retained_process_service_attribute_mask=0
retained_service_attribute_mask=0
retain_state_information=1
retention_update_interval=60
service_check_timeout=240
service_freshness_check_interval=60
service_inter_check_delay_method=s
service_interleave_factor=s
#sleep_time=0.25
soft_state_dependencies=0
state_retention_file=/usr/local/nagios/var/retention.dat
status_file=/usr/local/nagios/var/status.dat
#status_file=/var/nagiosramdisk/status.dat
status_update_interval=10
temp_file=/usr/local/nagios/var/nagios.tmp
temp_path=/tmp
#temp_path=/var/nagiosramdisk/tmp
use_aggressive_host_checking=0
##use_embedded_perl_implicitly=0
use_regexp_matching=0
use_retained_program_state=1
use_retained_scheduling_info=1
use_syslog=0
use_true_regexp_matching=0

broker_module=/usr/lib64/mod_gearman/mod_gearman.o config=/etc/mod_gearman/mod_gearman_neb.conf eventhandler=no
Have been trying to setup another worker but having some issues with unrelated checks going into worker 2.
http://support.nagios.com/forum/viewtop ... 16&t=31675

Re: Mod Gearman Performance Issues Nagios 2014R2.6

Posted: Tue Mar 24, 2015 7:11 am
by rajasegar
This is how it looks like when it is having scheduling issues
2015-03-23_16-20-53.png

Re: Mod Gearman Performance Issues Nagios 2014R2.6

Posted: Tue Mar 24, 2015 4:37 pm
by cmerchant
Could you show us the output of the following command:

Code: Select all

ps -aux

Re: Mod Gearman Performance Issues Nagios 2014R2.6

Posted: Wed Mar 25, 2015 6:32 pm
by rajasegar
cmerchant wrote:Could you show us the output of the following command:

Code: Select all

ps -aux
This is taken now and the scheduling is ok.

Code: Select all

[nagios@nagiosprodxi1 perfdata]$ ps -aux
Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.8/FAQ
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root         1  0.0  0.0  19356  1168 ?        Ss   Mar24   0:06 /sbin/init
root         2  0.0  0.0      0     0 ?        S    Mar24   0:00 [kthreadd]
root         3  2.3  0.0      0     0 ?        S    Mar24  68:05 [migration/0]
root         4  1.3  0.0      0     0 ?        S    Mar24  39:00 [ksoftirqd/0]
root         5  0.0  0.0      0     0 ?        S    Mar24   0:00 [migration/0]
root         6  0.1  0.0      0     0 ?        S    Mar24   4:50 [watchdog/0]
root         7  0.1  0.0      0     0 ?        S    Mar24   3:59 [migration/1]
root         8  0.0  0.0      0     0 ?        S    Mar24   0:00 [migration/1]
root         9  0.0  0.0      0     0 ?        S    Mar24   0:20 [ksoftirqd/1]
root        10  0.0  0.0      0     0 ?        S    Mar24   0:03 [watchdog/1]
root        11  0.1  0.0      0     0 ?        S    Mar24   4:21 [migration/2]
root        12  0.0  0.0      0     0 ?        S    Mar24   0:00 [migration/2]
root        13  0.0  0.0      0     0 ?        S    Mar24   0:20 [ksoftirqd/2]
root        14  0.0  0.0      0     0 ?        S    Mar24   0:04 [watchdog/2]
root        15  0.1  0.0      0     0 ?        S    Mar24   3:41 [migration/3]
root        16  0.0  0.0      0     0 ?        S    Mar24   0:00 [migration/3]
root        17  0.0  0.0      0     0 ?        S    Mar24   0:18 [ksoftirqd/3]
root        18  0.0  0.0      0     0 ?        S    Mar24   0:03 [watchdog/3]
root        19  0.0  0.0      0     0 ?        S    Mar24   2:44 [migration/4]
root        20  0.0  0.0      0     0 ?        S    Mar24   0:00 [migration/4]
root        21  0.0  0.0      0     0 ?        S    Mar24   0:16 [ksoftirqd/4]
root        22  0.0  0.0      0     0 ?        S    Mar24   0:03 [watchdog/4]
root        23  0.0  0.0      0     0 ?        S    Mar24   1:56 [migration/5]
root        24  0.0  0.0      0     0 ?        S    Mar24   0:00 [migration/5]
root        25  0.0  0.0      0     0 ?        S    Mar24   0:14 [ksoftirqd/5]
root        26  0.0  0.0      0     0 ?        S    Mar24   0:02 [watchdog/5]
root        27  2.9  0.0      0     0 ?        S    Mar24  85:32 [migration/6]
root        28  0.0  0.0      0     0 ?        S    Mar24   0:00 [migration/6]
root        29  2.2  0.0      0     0 ?        S    Mar24  65:06 [ksoftirqd/6]
root        30  0.1  0.0      0     0 ?        S    Mar24   5:22 [watchdog/6]
root        31  0.1  0.0      0     0 ?        S    Mar24   4:17 [migration/7]
root        32  0.0  0.0      0     0 ?        S    Mar24   0:00 [migration/7]
root        33  0.0  0.0      0     0 ?        S    Mar24   0:17 [ksoftirqd/7]
root        34  0.0  0.0      0     0 ?        S    Mar24   0:03 [watchdog/7]
root        35  0.1  0.0      0     0 ?        S    Mar24   4:30 [migration/8]
root        36  0.0  0.0      0     0 ?        S    Mar24   0:00 [migration/8]
root        37  0.0  0.0      0     0 ?        S    Mar24   0:19 [ksoftirqd/8]
root        38  0.0  0.0      0     0 ?        S    Mar24   0:04 [watchdog/8]
root        39  0.1  0.0      0     0 ?        S    Mar24   3:47 [migration/9]
root        40  0.0  0.0      0     0 ?        S    Mar24   0:00 [migration/9]
root        41  0.0  0.0      0     0 ?        S    Mar24   0:16 [ksoftirqd/9]
root        42  0.0  0.0      0     0 ?        S    Mar24   0:03 [watchdog/9]
root        43  0.0  0.0      0     0 ?        S    Mar24   2:48 [migration/10]
root        44  0.0  0.0      0     0 ?        S    Mar24   0:00 [migration/10]
root        45  0.0  0.0      0     0 ?        S    Mar24   0:13 [ksoftirqd/10]
root        46  0.0  0.0      0     0 ?        S    Mar24   0:04 [watchdog/10]
root        47  0.0  0.0      0     0 ?        S    Mar24   1:52 [migration/11]
root        48  0.0  0.0      0     0 ?        S    Mar24   0:00 [migration/11]
root        49  0.0  0.0      0     0 ?        S    Mar24   0:13 [ksoftirqd/11]
root        50  0.0  0.0      0     0 ?        S    Mar24   0:03 [watchdog/11]
root        51  1.2  0.0      0     0 ?        S    Mar24  35:07 [events/0]
root        52  0.0  0.0      0     0 ?        S    Mar24   0:45 [events/1]
root        53  0.0  0.0      0     0 ?        S    Mar24   0:41 [events/2]
root        54  0.0  0.0      0     0 ?        S    Mar24   0:41 [events/3]
root        55  0.0  0.0      0     0 ?        S    Mar24   0:36 [events/4]
root        56  0.0  0.0      0     0 ?        S    Mar24   0:39 [events/5]
root        57  1.5  0.0      0     0 ?        S    Mar24  45:38 [events/6]
root        58  0.0  0.0      0     0 ?        S    Mar24   0:43 [events/7]
root        59  0.0  0.0      0     0 ?        S    Mar24   0:47 [events/8]
root        60  0.0  0.0      0     0 ?        S    Mar24   0:44 [events/9]
root        61  0.0  0.0      0     0 ?        S    Mar24   0:39 [events/10]
root        62  0.0  0.0      0     0 ?        S    Mar24   0:43 [events/11]
root        63  0.0  0.0      0     0 ?        S    Mar24   0:00 [cgroup]
root        64  0.0  0.0      0     0 ?        S    Mar24   0:00 [khelper]
root        65  0.0  0.0      0     0 ?        S    Mar24   0:00 [netns]
root        66  0.0  0.0      0     0 ?        S    Mar24   0:00 [async/mgr]
root        67  0.0  0.0      0     0 ?        S    Mar24   0:00 [pm]
root        68  0.0  0.0      0     0 ?        S    Mar24   0:17 [sync_supers]
root        69  0.0  0.0      0     0 ?        S    Mar24   0:12 [bdi-default]
root        70  0.0  0.0      0     0 ?        S    Mar24   0:00 [kintegrityd/0]
root        71  0.0  0.0      0     0 ?        S    Mar24   0:00 [kintegrityd/1]
root        72  0.0  0.0      0     0 ?        S    Mar24   0:00 [kintegrityd/2]
root        73  0.0  0.0      0     0 ?        S    Mar24   0:00 [kintegrityd/3]
root        74  0.0  0.0      0     0 ?        S    Mar24   0:00 [kintegrityd/4]
root        75  0.0  0.0      0     0 ?        S    Mar24   0:00 [kintegrityd/5]
root        76  0.0  0.0      0     0 ?        S    Mar24   0:00 [kintegrityd/6]
root        77  0.0  0.0      0     0 ?        S    Mar24   0:00 [kintegrityd/7]
root        78  0.0  0.0      0     0 ?        S    Mar24   0:00 [kintegrityd/8]
root        79  0.0  0.0      0     0 ?        S    Mar24   0:00 [kintegrityd/9]
root        80  0.0  0.0      0     0 ?        S    Mar24   0:00 [kintegrityd/10]
root        81  0.0  0.0      0     0 ?        S    Mar24   0:00 [kintegrityd/11]
root        82  2.2  0.0      0     0 ?        S    Mar24  64:12 [kblockd/0]
root        83  0.1  0.0      0     0 ?        S    Mar24   3:00 [kblockd/1]
root        84  0.0  0.0      0     0 ?        S    Mar24   2:17 [kblockd/2]
root        85  0.0  0.0      0     0 ?        S    Mar24   2:22 [kblockd/3]
root        86  0.0  0.0      0     0 ?        S    Mar24   2:04 [kblockd/4]
root        87  0.0  0.0      0     0 ?        S    Mar24   2:12 [kblockd/5]
root        88  2.5  0.0      0     0 ?        S    Mar24  74:50 [kblockd/6]
root        89  0.0  0.0      0     0 ?        S    Mar24   2:04 [kblockd/7]
root        90  0.0  0.0      0     0 ?        S    Mar24   2:00 [kblockd/8]
root        91  0.0  0.0      0     0 ?        S    Mar24   2:08 [kblockd/9]
root        92  0.0  0.0      0     0 ?        S    Mar24   0:55 [kblockd/10]
root        93  0.0  0.0      0     0 ?        S    Mar24   1:56 [kblockd/11]
root        94  0.0  0.0      0     0 ?        S    Mar24   0:00 [kacpid]
root        95  0.0  0.0      0     0 ?        S    Mar24   0:00 [kacpi_notify]
root        96  0.0  0.0      0     0 ?        S    Mar24   0:00 [kacpi_hotplug]
root        97  0.0  0.0      0     0 ?        S    Mar24   0:00 [ata_aux]
root        98  0.0  0.0      0     0 ?        S    Mar24   0:00 [ata_sff/0]
root        99  0.0  0.0      0     0 ?        S    Mar24   0:00 [ata_sff/1]
root       100  0.0  0.0      0     0 ?        S    Mar24   0:00 [ata_sff/2]
root       101  0.0  0.0      0     0 ?        S    Mar24   0:00 [ata_sff/3]
root       102  0.0  0.0      0     0 ?        S    Mar24   0:00 [ata_sff/4]
root       103  0.0  0.0      0     0 ?        S    Mar24   0:00 [ata_sff/5]
root       104  0.0  0.0      0     0 ?        S    Mar24   0:00 [ata_sff/6]
root       105  0.0  0.0      0     0 ?        S    Mar24   0:00 [ata_sff/7]
root       106  0.0  0.0      0     0 ?        S    Mar24   0:00 [ata_sff/8]
root       107  0.0  0.0      0     0 ?        S    Mar24   0:00 [ata_sff/9]
root       108  0.0  0.0      0     0 ?        S    Mar24   0:00 [ata_sff/10]
root       109  0.0  0.0      0     0 ?        S    Mar24   0:00 [ata_sff/11]
root       110  0.0  0.0      0     0 ?        S    Mar24   0:00 [ksuspend_usbd]
root       111  0.0  0.0      0     0 ?        S    Mar24   0:00 [khubd]
root       112  0.0  0.0      0     0 ?        S    Mar24   0:00 [kseriod]
root       113  0.0  0.0      0     0 ?        S    Mar24   0:00 [md/0]
root       114  0.0  0.0      0     0 ?        S    Mar24   0:00 [md/1]
root       115  0.0  0.0      0     0 ?        S    Mar24   0:00 [md/2]
root       116  0.0  0.0      0     0 ?        S    Mar24   0:00 [md/3]
root       117  0.0  0.0      0     0 ?        S    Mar24   0:00 [md/4]
root       118  0.0  0.0      0     0 ?        S    Mar24   0:00 [md/5]
root       119  0.0  0.0      0     0 ?        S    Mar24   0:00 [md/6]
root       120  0.0  0.0      0     0 ?        S    Mar24   0:00 [md/7]
root       121  0.0  0.0      0     0 ?        S    Mar24   0:00 [md/8]
root       122  0.0  0.0      0     0 ?        S    Mar24   0:00 [md/9]
root       123  0.0  0.0      0     0 ?        S    Mar24   0:00 [md/10]
root       124  0.0  0.0      0     0 ?        S    Mar24   0:00 [md/11]
root       125  0.0  0.0      0     0 ?        S    Mar24   0:00 [md_misc/0]
root       126  0.0  0.0      0     0 ?        S    Mar24   0:00 [md_misc/1]
root       127  0.0  0.0      0     0 ?        S    Mar24   0:00 [md_misc/2]
root       128  0.0  0.0      0     0 ?        S    Mar24   0:00 [md_misc/3]
root       129  0.0  0.0      0     0 ?        S    Mar24   0:00 [md_misc/4]
root       130  0.0  0.0      0     0 ?        S    Mar24   0:00 [md_misc/5]
root       131  0.0  0.0      0     0 ?        S    Mar24   0:00 [md_misc/6]
root       132  0.0  0.0      0     0 ?        S    Mar24   0:00 [md_misc/7]
root       133  0.0  0.0      0     0 ?        S    Mar24   0:00 [md_misc/8]
root       134  0.0  0.0      0     0 ?        S    Mar24   0:00 [md_misc/9]
root       135  0.0  0.0      0     0 ?        S    Mar24   0:00 [md_misc/10]
root       136  0.0  0.0      0     0 ?        S    Mar24   0:00 [md_misc/11]
root       137  0.0  0.0      0     0 ?        S    Mar24   0:00 [linkwatch]
root       138  0.0  0.0      0     0 ?        S    Mar24   0:01 [khungtaskd]
root       139  0.0  0.0      0     0 ?        S    Mar24   0:09 [kswapd0]
root       140  0.0  0.0      0     0 ?        S    Mar24   0:06 [kswapd1]
root       141  0.0  0.0      0     0 ?        SN   Mar24   0:00 [ksmd]
root       142  0.0  0.0      0     0 ?        SN   Mar24   0:27 [khugepaged]
root       143  0.0  0.0      0     0 ?        S    Mar24   0:00 [aio/0]
root       144  0.0  0.0      0     0 ?        S    Mar24   0:00 [aio/1]
root       145  0.0  0.0      0     0 ?        S    Mar24   0:00 [aio/2]
root       146  0.0  0.0      0     0 ?        S    Mar24   0:00 [aio/3]
root       147  0.0  0.0      0     0 ?        S    Mar24   0:00 [aio/4]
root       148  0.0  0.0      0     0 ?        S    Mar24   0:00 [aio/5]
root       149  0.0  0.0      0     0 ?        S    Mar24   0:00 [aio/6]
root       150  0.0  0.0      0     0 ?        S    Mar24   0:00 [aio/7]
root       151  0.0  0.0      0     0 ?        S    Mar24   0:00 [aio/8]
root       152  0.0  0.0      0     0 ?        S    Mar24   0:00 [aio/9]
root       153  0.0  0.0      0     0 ?        S    Mar24   0:00 [aio/10]
root       154  0.0  0.0      0     0 ?        S    Mar24   0:00 [aio/11]
root       155  0.0  0.0      0     0 ?        S    Mar24   0:00 [crypto/0]
root       156  0.0  0.0      0     0 ?        S    Mar24   0:00 [crypto/1]
root       157  0.0  0.0      0     0 ?        S    Mar24   0:00 [crypto/2]
root       158  0.0  0.0      0     0 ?        S    Mar24   0:00 [crypto/3]
root       159  0.0  0.0      0     0 ?        S    Mar24   0:00 [crypto/4]
root       160  0.0  0.0      0     0 ?        S    Mar24   0:00 [crypto/5]
root       161  0.0  0.0      0     0 ?        S    Mar24   0:00 [crypto/6]
root       162  0.0  0.0      0     0 ?        S    Mar24   0:00 [crypto/7]
root       163  0.0  0.0      0     0 ?        S    Mar24   0:00 [crypto/8]
root       164  0.0  0.0      0     0 ?        S    Mar24   0:00 [crypto/9]
root       165  0.0  0.0      0     0 ?        S    Mar24   0:00 [crypto/10]
root       166  0.0  0.0      0     0 ?        S    Mar24   0:00 [crypto/11]
root       171  0.0  0.0      0     0 ?        S    Mar24   0:00 [kthrotld/0]
root       172  0.0  0.0      0     0 ?        S    Mar24   0:00 [kthrotld/1]
root       173  0.0  0.0      0     0 ?        S    Mar24   0:00 [kthrotld/2]
root       174  0.0  0.0      0     0 ?        S    Mar24   0:00 [kthrotld/3]
root       175  0.0  0.0      0     0 ?        S    Mar24   0:00 [kthrotld/4]
root       176  0.0  0.0      0     0 ?        S    Mar24   0:00 [kthrotld/5]
root       177  0.0  0.0      0     0 ?        S    Mar24   0:00 [kthrotld/6]
root       178  0.0  0.0      0     0 ?        S    Mar24   0:00 [kthrotld/7]
root       179  0.0  0.0      0     0 ?        S    Mar24   0:00 [kthrotld/8]
root       180  0.0  0.0      0     0 ?        S    Mar24   0:00 [kthrotld/9]
root       181  0.0  0.0      0     0 ?        S    Mar24   0:00 [kthrotld/10]
root       182  0.0  0.0      0     0 ?        S    Mar24   0:00 [kthrotld/11]
root       183  0.0  0.0      0     0 ?        S    Mar24   0:00 [pciehpd]
root       185  0.0  0.0      0     0 ?        S    Mar24   0:00 [kpsmoused]
root       186  0.0  0.0      0     0 ?        S    Mar24   0:00 [usbhid_resumer]
root       217  0.0  0.0      0     0 ?        S    Mar24   0:00 [kstriped]
root       314  0.0  0.0      0     0 ?        S    Mar24   0:00 [scsi_eh_0]
root       321  0.0  0.0      0     0 ?        S    Mar24   0:00 [scsi_eh_1]
root       349  0.0  0.0      0     0 ?        S    Mar24   0:00 [scsi_eh_2]
root       350  0.0  0.0      0     0 ?        S    Mar24   0:00 [vmw_pvscsi_wq_2]
nagios     442  0.0  0.0 106100  1220 ?        S    Mar24   0:00 sh -c /usr/local/nagios/libexec/check_as400 -u $_HOSTAS400_USER$ -p $_HOSTAS400_PASSWD$  -H 10.104.112.
nagios     472  0.2  0.6 4834544 74024 ?       Sl   Mar24   6:30 /usr/bin/java -cp /usr/local/nagios/libexec check_as400 -u test-p test123 -u $ -p $ -H 10.104.112.1
root       474  0.0  0.0      0     0 ?        S    Mar24   0:00 [kdmflush]
root       476  0.0  0.0      0     0 ?        S    Mar24   0:00 [kdmflush]
root       493  0.4  0.0      0     0 ?        S    Mar24  14:05 [jbd2/dm-0-8]
root       494  0.0  0.0      0     0 ?        S    Mar24   0:00 [ext4-dio-unwrit]
root       579  0.0  0.0  11028   272 ?        S<s  Mar24   0:00 /sbin/udevd -d
root       763  0.0  0.0      0     0 ?        S    Mar24   0:19 [vmmemctl]
nagios    1173  0.2  0.2 175716 26896 ?        S    06:01   0:14 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios    1185  0.2  0.2 175784 26912 ?        S    06:01   0:14 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
root      1216  0.0  0.0      0     0 ?        S    Mar24   0:00 [kdmflush]
root      1218  0.0  0.0      0     0 ?        S    Mar24   0:00 [kdmflush]
root      1277  0.0  0.0      0     0 ?        S    Mar24   0:00 [jbd2/sda1-8]
root      1278  0.0  0.0      0     0 ?        S    Mar24   0:00 [ext4-dio-unwrit]
root      1279  0.1  0.0      0     0 ?        S    Mar24   3:10 [jbd2/dm-2-8]
root      1280  0.0  0.0      0     0 ?        S    Mar24   0:00 [ext4-dio-unwrit]
root      1281  0.0  0.0      0     0 ?        S    Mar24   1:28 [jbd2/dm-3-8]
root      1282  0.0  0.0      0     0 ?        S    Mar24   0:00 [ext4-dio-unwrit]
root      1345  0.0  0.0      0     0 ?        S    Mar24   0:08 [kauditd]
root      1422  2.0  0.0      0     0 ?        S    Mar24  60:04 [flush-253:0]
root      1423  0.0  0.0      0     0 ?        S    Mar24   1:01 [flush-253:2]
root      1424  0.0  0.0      0     0 ?        S    Mar24   1:15 [flush-253:3]
nagios    1481 14.6  0.0 106720  2004 ?        S    07:20   1:11 bash ./process_host_data
root      1590  0.2  0.0 179264  2772 ?        S    Mar24   7:40 /usr/sbin/vmtoolsd
postgres  1922  0.0  0.0 218468  8160 ?        Ss   Mar25   0:40 postgres: nagiosxi nagiosxi [local] idle
root      1923  0.0  0.0  93200   776 ?        S<sl Mar24   0:29 auditd
root      1948  0.0  0.0 251200  1204 ?        Sl   Mar24   0:13 /sbin/rsyslogd -i /var/run/syslogd.pid -c 5
root      1977  0.0  0.0  10952   564 ?        Ss   Mar24   0:46 irqbalance --pid=/var/run/irqbalance.pid
rpc       1991  0.0  0.0  18976   856 ?        Ss   Mar24   0:01 rpcbind
nagios    1996  0.3  0.5 4834544 72044 ?       Sl   Mar24   8:30 /usr/bin/java -cp /usr/local/nagios/libexec check_as400 -u $ -p $ -H 10.104.112.10 -v LOGIN WAITINGFORK
nagios    2026  0.2  0.5 4834544 71252 ?       Sl   Mar24   6:19 /usr/bin/java -cp /usr/local/nagios/libexec check_as400 -u $ -p $ -H 10.104.112.10 -v LOGIN WAITINGFORK
nagios    2073  0.3  0.2 174520 25536 ?        S    07:16   0:02 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
dbus      2090  0.0  0.0  21800  1208 ?        Ss   Mar24   0:00 dbus-daemon --system
root      2100  0.0  0.0  82824  2816 ?        Ss   Mar24   0:04 NetworkManager --pid-file=/var/run/NetworkManager/NetworkManager.pid
root      2104  0.0  0.0  58064  1724 ?        S    Mar24   0:00 /usr/sbin/modem-manager
rpcuser   2119  0.0  0.0  23348   872 ?        Ss   Mar24   0:00 rpc.statd
root      2167  0.0  0.0 189332  1952 ?        Ss   Mar24   0:00 cupsd -C /etc/cups/cupsd.conf
root      2176  0.0  0.0  44972   292 ?        Ss   Mar24   0:00 /usr/sbin/wpa_supplicant -c /etc/wpa_supplicant/wpa_supplicant.conf -B -u -f /var/log/wpa_supplicant.lo
root      2204  0.0  0.0   4080   528 ?        Ss   Mar24   0:00 /usr/sbin/acpid
68        2213  0.0  0.0  37932  2124 ?        Ssl  Mar24   0:04 hald
root      2214  0.0  0.0  20328   840 ?        S    Mar24   0:00 hald-runner
root      2256  0.0  0.0  22448   756 ?        S    Mar24   0:00 hald-addon-input: Listening on /dev/input/event2 /dev/input/event0
68        2261  0.0  0.0  17936   740 ?        S    Mar24   0:00 hald-addon-acpi: listening on acpid socket /var/run/acpid.socket
root      2297  0.0  0.0   6260   148 ?        Ss   Mar24   0:00 /usr/sbin/mcelog --daemon
apache    2299  2.2  0.3 458608 38680 ?        S    Mar25  18:47 /usr/sbin/httpd
root      2309  0.0  0.0  66608   628 ?        Ss   Mar24   0:00 /usr/sbin/sshd
root      2317  0.0  0.0  22180   680 ?        Ss   Mar24   0:00 xinetd -stayalive -pidfile /var/run/xinetd.pid
ntp       2325  0.0  0.0  26496  1460 ?        Ss   Mar24   0:01 ntpd -u ntp:ntp -p /var/run/ntpd.pid -g
postgres  2375  0.0  0.0 217936  7472 ?        Ss   Mar25   0:22 postgres: nagiosxi nagiosxi [local] idle
root      2445  0.0  0.0  81280  2580 ?        Ss   Mar24   0:03 /usr/libexec/postfix/master
postfix   2454  0.0  0.0  81532  2700 ?        S    Mar24   0:01 qmgr -l -t fifo -u
root      2469  0.0  0.0 110320   956 ?        Ss   Mar24   0:00 /usr/sbin/abrtd
root      2477  0.0  0.0 108204   772 ?        Ss   Mar24   0:00 abrt-dump-oops -d /var/spool/abrt -rwx /var/log/messages
root      2535  0.0  0.0 735148  4204 ?        Ssl  Mar24   0:04 /usr/local/avamar/bin/avagent.bin --bindir="/usr/local/avamar/bin" --vardir="/usr/local/avamar/var" --s
root      2545  0.0  0.0 117300   820 ?        Ss   Mar24   0:09 crond
root      2565  0.0  0.0  21540   308 ?        Ss   Mar24   0:00 /usr/sbin/atd
root      2575  0.0  0.0 100928   596 ?        Ss   Mar24   0:00 rhnsd
root      2591  0.0  0.0 104020   552 ?        Ss   Mar24   0:00 /usr/bin/rhsmcertd
ajaxterm  2615  0.0  0.0 170324  2080 ?        Sl   Mar24   2:47 python /usr/share/ajaxterm/ajaxterm.py --daemon --port=8022 --uid=ajaxterm
root      2628  0.0  0.0  62340   264 ?        Ss   Mar24   0:02 /usr/sbin/certmonger -S -p /var/run/certmonger.pid
root      2782  0.0  0.0 133936  1848 ?        Ssl  Mar24   0:00 /usr/sbin/gdm-binary -nodaemon
root      2787  0.0  0.0   4064   456 tty2     Ss+  Mar24   0:00 /sbin/mingetty /dev/tty2
root      2789  0.0  0.0   4064   456 tty3     Ss+  Mar24   0:00 /sbin/mingetty /dev/tty3
root      2791  0.0  0.0   4064   456 tty4     Ss+  Mar24   0:00 /sbin/mingetty /dev/tty4
root      2793  0.0  0.0   4064   456 tty5     Ss+  Mar24   0:00 /sbin/mingetty /dev/tty5
root      2796  0.0  0.0  11024   236 ?        S<   Mar24   0:00 /sbin/udevd -d
root      2797  0.0  0.0  11024   236 ?        S<   Mar24   0:00 /sbin/udevd -d
root      2798  0.0  0.0   4064   456 tty6     Ss+  Mar24   0:00 /sbin/mingetty /dev/tty6
root      2823  0.0  0.0 164572  1904 ?        Sl   Mar24   0:00 /usr/libexec/gdm-simple-slave --display-id /org/gnome/DisplayManager/Display1 --force-active-vt
root      2826  0.0  0.1 154472 16460 tty1     Ss+  Mar24   0:07 /usr/bin/Xorg :0 -nr -verbose -audit 4 -auth /var/run/gdm/auth-for-gdm-0vCxQT/database -nolisten tcp vt
root      2842  0.0  0.0 4116476 1848 ?        Sl   Mar24   0:00 /usr/sbin/console-kit-daemon --no-daemon
gdm       2912  0.0  0.0  20040   388 ?        S    Mar24   0:00 /usr/bin/dbus-launch --exit-with-session
gdm       2913  0.0  0.0  21536   352 ?        Ss   Mar24   0:00 /bin/dbus-daemon --fork --print-pid 5 --print-address 7 --session
gdm       2914  0.0  0.0 269132  3680 ?        Ssl  Mar24   0:00 /usr/bin/gnome-session --autostart=/usr/share/gdm/autostart/LoginWindow/
root      2917  0.0  0.0  49828  1772 ?        S    Mar24   0:00 /usr/libexec/devkit-power-daemon
gdm       2921  0.0  0.0 132180  2020 ?        S    Mar24   0:01 /usr/libexec/gconfd-2
gdm       2936  0.0  0.0 120332  2904 ?        S    Mar24   0:01 /usr/libexec/at-spi-registryd
gdm       2940  0.1  0.0 349008  6672 ?        Ssl  Mar24   3:03 /usr/libexec/gnome-settings-daemon --gconf-prefix=/apps/gdm/simple-greeter/settings-manager-plugins
gdm       2942  0.0  0.0 358476  1964 ?        Ssl  Mar24   0:00 /usr/libexec/bonobo-activation-server --ac-activate --ior-output-fd=12
gdm       2949  0.0  0.0 135108  1356 ?        S    Mar24   0:00 /usr/libexec/gvfsd
gdm       2950  0.0  0.0 286960  4840 ?        S    Mar24   0:01 metacity
gdm       2953  0.0  0.0 273796  5056 ?        S    Mar24   0:08 gnome-power-manager
gdm       2954  0.0  0.0 248360  4208 ?        S    Mar24   0:00 /usr/libexec/polkit-gnome-authentication-agent-1
gdm       2955  0.0  0.0 382544  8180 ?        S    Mar24   0:05 /usr/libexec/gdm-simple-greeter
root      2959  0.0  0.0  52444  2704 ?        S    Mar24   0:00 /usr/libexec/polkit-1/polkitd
gdm       2966  0.0  0.0 346200  1492 ?        S<sl Mar24   0:00 /usr/bin/pulseaudio --start --log-target=syslog
rtkit     2968  0.0  0.0 168456  1016 ?        SNl  Mar24   0:28 /usr/libexec/rtkit-daemon
root      2973  0.0  0.0 142040  1812 ?        S    Mar24   0:00 pam: gdm-password
postgres  3656  0.0  0.0 216360  5004 ?        S    Mar24   0:42 /usr/bin/postmaster -p 5432 -D /var/lib/pgsql/data
postgres  3658  0.0  0.0 179372  1136 ?        Ss   Mar24   0:39 postgres: logger process
postgres  3660  0.1  0.1 216476 23220 ?        Ss   Mar24   3:53 postgres: writer process
postgres  3661  0.0  0.0 216360  1420 ?        Ss   Mar24   2:45 postgres: wal writer process
postgres  3662  0.0  0.0 216628  1604 ?        Ss   Mar24   0:50 postgres: autovacuum launcher process
postgres  3663  0.0  0.0 179636  1312 ?        Ss   Mar24   1:49 postgres: stats collector process
nagios    3684  0.0  0.0  50272   632 ?        Ss   Mar24   0:00 /usr/local/nagios/bin/ndo2db -c /usr/local/nagios/etc/ndo2db.cfg
root      3698  0.0  0.1 335768 13652 ?        Ss   Mar24   0:41 /usr/sbin/httpd
nagios    5288  0.3  0.2 179004 30092 ?        S    02:58   0:50 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios    5377  8.6  7.4 1044028 911268 ?      Ssl  Mar25  72:57 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
nagios    5383  0.0  0.0  10016   928 ?        S    Mar25   0:25 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5385  0.0  0.0  10016   932 ?        S    Mar25   0:27 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5387  0.0  0.0  10016   928 ?        S    Mar25   0:21 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5388  0.0  0.0  10016   932 ?        S    Mar25   0:23 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5389  0.0  0.0  10016   940 ?        S    Mar25   0:28 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5390  0.0  0.0  10016   932 ?        S    Mar25   0:24 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5391  0.0  0.0  10016   936 ?        S    Mar25   0:25 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5392  0.0  0.0  10016   932 ?        S    Mar25   0:20 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5393  0.0  0.0  10016   928 ?        S    Mar25   0:20 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5395  0.0  0.0  10016   924 ?        S    Mar25   0:23 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5396  0.0  0.0  10016   928 ?        S    Mar25   0:21 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5397  0.0  0.0  10016   936 ?        S    Mar25   0:22 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5398  0.0  0.0  10016   940 ?        S    Mar25   0:21 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5400  0.0  0.0  10016   928 ?        S    Mar25   0:27 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5402  0.0  0.0  10016   932 ?        S    Mar25   0:20 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5403  0.0  0.0  10016   936 ?        S    Mar25   0:22 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5404  0.0  0.0  10016   928 ?        S    Mar25   0:25 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5406  0.0  0.0  10016   936 ?        S    Mar25   0:19 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    5418  0.4  0.0  50272  1500 ?        S    Mar25   3:34 /usr/local/nagios/bin/ndo2db -c /usr/local/nagios/etc/ndo2db.cfg
nagios    5419 12.3  0.0  55844  7192 ?        S    Mar25 103:52 /usr/local/nagios/bin/ndo2db -c /usr/local/nagios/etc/ndo2db.cfg
apache    6097  3.3  0.7 512764 92572 ?        S    Mar25  30:42 /usr/sbin/httpd
postgres  6330  0.0  0.0 217952  7604 ?        Ss   Mar25   0:38 postgres: nagiosxi nagiosxi [local] idle
nagios    6386  0.3  0.2 174832 26008 ?        S    06:46   0:07 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios    6402  0.2  0.2 174876 26044 ?        S    06:46   0:07 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios    6405  0.2  0.2 174564 25612 ?        S    06:46   0:06 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
apache    6415  3.3  0.3 460880 40532 ?        S    Mar25  30:15 /usr/sbin/httpd
apache    6416  3.1  0.3 456620 36672 ?        S    Mar25  28:29 /usr/sbin/httpd
postgres  6611  0.0  0.0 217936  7584 ?        Ss   Mar25   0:37 postgres: nagiosxi nagiosxi [local] idle
postgres  6674  0.0  0.0 217936  7584 ?        Ss   Mar25   0:41 postgres: nagiosxi nagiosxi [local] idle
nagios    8070  0.3  0.2 175460 26592 ?        S    06:24   0:11 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios    8098  0.2  0.2 175188 26332 ?        S    06:24   0:10 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
apache    8108  3.1  0.4 472376 52412 ?        S    Mar25  28:12 /usr/sbin/httpd
nagios    8111  0.2  0.2 174668 25756 ?        S    06:24   0:10 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
postgres  8741  0.0  0.0 217952  7460 ?        Ss   Mar25   0:39 postgres: nagiosxi nagiosxi [local] idle
nagios    8934 46.2  0.6 269620 77712 ?        R    07:28   0:03 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios    9110  0.0  0.0  39204  2052 ?        S    07:28   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 10.17.118.11 -t 60 -c rs_check_port -a localhost 443 0.300 0
nagios    9523  0.2  0.6 4834544 73636 ?       Sl   Mar24   6:20 /usr/bin/java -cp /usr/local/nagios/libexec check_as400 -u $ -p $ -H 10.104.112.10 -v LOGIN WAITINGFORK
apache    9712  3.1  0.3 461484 41624 ?        S    Mar25  28:30 /usr/sbin/httpd
gearmand  9726 18.4  0.0 546416 10576 ?        Ssl  Mar24 399:23 /usr/sbin/gearmand -d
nagios    9897  0.0  0.0  38160   948 ?        Ss   Mar24   0:51 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
postgres  9957  0.0  0.0 218428  8124 ?        Ss   Mar25   0:36 postgres: nagiosxi nagiosxi [local] idle
nagios    9966  0.0  0.0 293104   972 ?        S    Mar24   0:29 /usr/local/nagios/bin/npcd -d -f /usr/local/nagios/etc/pnp/npcd.cfg
apache   10803  3.1  0.2 456376 36324 ?        S    Mar25  28:59 /usr/sbin/httpd
postgres 10895  0.0  0.0 218452  7668 ?        Ss   Mar25   0:40 postgres: nagiosxi nagiosxi [local] idle
apache   11210  3.0  0.2 456124 36124 ?        S    Mar25  27:28 /usr/sbin/httpd
root     11389  0.0  0.0 140184  1352 ?        S    07:29   0:00 CROND
root     11391  0.0  0.0 140184  1352 ?        S    07:29   0:00 CROND
root     11392  0.0  0.0 140184  1352 ?        S    07:29   0:00 CROND
root     11394  0.0  0.0 140184  1352 ?        S    07:29   0:00 CROND
root     11396  0.0  0.0 140184  1352 ?        S    07:29   0:00 CROND
nagios   11407  0.0  0.0 106096  1144 ?        Ss   07:29   0:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/perfdataproc.php > /usr/local/nagiosxi/var/perfdata
nagios   11409  0.0  0.0 106096  1144 ?        Ss   07:29   0:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/eventman.php > /usr/local/nagiosxi/var/eventman.log
nagios   11410  0.0  0.0 106096  1144 ?        Ss   07:29   0:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/feedproc.php > /usr/local/nagiosxi/var/feedproc.log
nagios   11413  3.0  0.1 321256 23372 ?        S    07:29   0:00 /usr/bin/php -q /usr/local/nagiosxi/cron/perfdataproc.php
nagios   11418  4.0  0.2 328540 30572 ?        S    07:29   0:00 /usr/bin/php -q /usr/local/nagiosxi/cron/eventman.php
nagios   11422  0.0  0.0 106096  1144 ?        Ss   07:29   0:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/sysstat.php > /usr/local/nagiosxi/var/sysstat.log 2
nagios   11423  0.0  0.0 106096  1144 ?        Ss   07:29   0:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/cmdsubsys.php > /usr/local/nagiosxi/var/cmdsubsys.l
nagios   11425  3.1  0.1 321084 22840 ?        S    07:29   0:00 /usr/bin/php -q /usr/local/nagiosxi/cron/feedproc.php
nagios   11427  2.3  0.1 321016 23424 ?        S    07:29   0:00 /usr/bin/php -q /usr/local/nagiosxi/cron/sysstat.php
nagios   11428  2.3  0.1 320852 23020 ?        S    07:29   0:00 /usr/bin/php -q /usr/local/nagiosxi/cron/cmdsubsys.php
postgres 11496  0.0  0.0 218464  8048 ?        Ss   Mar25   0:39 postgres: nagiosxi nagiosxi [local] idle
postgres 11522  0.0  0.0 217784  5688 ?        Ss   07:29   0:00 postgres: nagiosxi nagiosxi [local] idle
postgres 11545  0.0  0.0 217728  5388 ?        Ss   07:29   0:00 postgres: nagiosxi nagiosxi [local] idle
postgres 11611  0.0  0.0 217728  5388 ?        Ss   07:29   0:00 postgres: nagiosxi nagiosxi [local] idle
nagios   11631  0.3  0.2 174628 25868 ?        S    07:00   0:05 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   11647  0.3  0.2 174720 25772 ?        S    07:00   0:05 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   11648  0.2  0.2 174596 25724 ?        S    07:00   0:04 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
postgres 11656  0.3  0.0 217784  6456 ?        Ss   07:29   0:00 postgres: nagiosxi nagiosxi [local] idle
nagios   11659  0.2  0.2 174344 25432 ?        S    07:00   0:04 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   11660  0.2  0.2 174784 25752 ?        R    07:00   0:04 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
postgres 11663  0.0  0.0 217728  5360 ?        Ss   07:29   0:00 postgres: nagiosxi nagiosxi [local] idle
nagios   11677  0.3  0.2 174668 25776 ?        S    07:00   0:05 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   12150  0.3  0.2 175020 26112 ?        R    06:46   0:07 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   12632  0.0  0.1  70188 19940 ?        S    Mar25   0:17 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
nagios   13682  0.2  0.2 175252 26260 ?        S    05:34   0:17 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13717  0.2  0.2 176100 27312 ?        S    05:34   0:18 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13913  0.2  0.1 167468 20528 ?        S    07:11   0:02 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13916  0.3  0.2 174560 25604 ?        S    07:11   0:03 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13918  0.3  0.2 174464 25628 ?        S    07:11   0:03 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13923  0.3  0.2 174312 25472 ?        S    07:11   0:03 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13925  0.2  0.2 174492 25532 ?        S    07:11   0:02 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13926  0.3  0.2 174488 25448 ?        S    07:11   0:03 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13928  0.2  0.2 174456 25476 ?        S    07:11   0:02 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13942  0.3  0.2 174260 25356 ?        S    07:11   0:03 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13951  0.3  0.2 174464 25588 ?        S    07:11   0:03 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13956  0.2  0.2 174504 25500 ?        S    07:11   0:03 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13958  0.2  0.2 174488 25532 ?        S    07:11   0:02 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13960  0.2  0.1 172896 23996 ?        S    07:11   0:03 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13963  0.0  0.0 106100  1220 ?        S    Mar24   0:00 sh -c /usr/local/nagios/libexec/check_as400 -u $_HOSTAS400_USER$ -p $_HOSTAS400_PASSWD$  -H 10.104.112.
nagios   13964  0.3  0.2 174488 25544 ?        S    07:11   0:03 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13965  0.2  0.2 174388 25484 ?        S    07:11   0:02 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   13983  0.2  0.5 4834544 72008 ?       Sl   Mar24   5:55 /usr/bin/java -cp /usr/local/nagios/libexec check_as400 -u NAGIOS -p cimb@123 -u $ -p $ -H 10.104.112.1
root     14489  0.0  0.0 100372  4492 ?        Ss   07:27   0:00 sshd: nagios [priv]
nagios   14722  0.3  0.0 144604  8084 ?        S    07:26   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
root     14813  0.0  0.0 140184  1352 ?        S    07:20   0:00 CROND
nagios   14834  0.0  0.0 106096  1144 ?        Ss   07:20   0:00 /bin/sh -c /perfdata/scripts/process_data > /dev/null
nagios   14857  0.0  0.0 106100  1284 ?        S    07:20   0:00 /bin/bash /perfdata/scripts/process_data
nagios   14869  0.0  0.0 106100  1288 ?        S    07:29   0:00 /bin/bash /usr/local/nagios/libexec/as400ExecSSL2 -w 10 -c 10 -v RSMONJOBS_SMYU2MISC_DURATION SIBPRBSBS
nagios   15861  0.2  0.0 138176  3392 ?        S    07:27   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   15978  0.0  0.0 109484   960 ?        S    07:29   0:00 /usr/local/nagios/libexec/check_ping -H 172.29.67.51 -w 3000,80% -c 5000,100% -p 5
nagios   15990  0.0  0.0   6412   652 ?        S    07:29   0:00 /bin/ping -n -U -w 30 -c 5 172.29.67.51
nagios   16210 61.0  0.0      0     0 ?        Zl   07:29   0:01 [java] <defunct>
nagios   16497  0.2  0.2 176084 27092 ?        S    05:41   0:17 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   16546  0.2  0.2 175908 27196 ?        S    05:42   0:18 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   16551  0.2  0.2 175924 27116 ?        S    05:42   0:18 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
apache   16718  2.2  0.3 460396 40464 ?        S    Mar25  18:30 /usr/sbin/httpd
postgres 16788  0.0  0.0 217944  7452 ?        Ss   Mar25   0:21 postgres: nagiosxi nagiosxi [local] idle
nagios   16832  0.0  0.0  39204  2048 ?        S    07:29   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 10.17.118.10 -t 60 -c rs_check_disk -a MB 30% 15% /tmp  -e -
nagios   17551 26.0  0.4 245720 53852 ?        S    07:29   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   17638 20.0  0.1 164916 24316 ?        S    07:29   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_nwc_health --hostname 172.26.17.254 --timeout=30 --com
nagios   17861 20.0  0.1 164920 24324 ?        R    07:29   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_nwc_health --hostname 10.2.4.254 --timeout=30 --commun
nagios   18149 16.0  0.1 159288 22592 ?        R    07:29   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_nwc_health --hostname 172.22.102.254 --timeout=30 --co
nagios   18162  0.5  0.3 4834544 39412 ?       Sl   07:27   0:00 /usr/bin/java -cp /usr/local/nagios/libexec check_as400 -u $ -p $ -H 10.104.112.10 -v LOGIN WAITINGFORK
apache   18264  2.5  0.2 456764 36504 ?        S    Mar25  21:00 /usr/sbin/httpd
postgres 18396  0.0  0.0 217944  7424 ?        Ss   Mar25   0:21 postgres: nagiosxi nagiosxi [local] idle
nagios   18427  0.0  0.0 106100  1184 ?        S    07:29   0:00 sh -c /usr/local/nagios/libexec/check_mssql_health -t 60 --server 10.17.19.48 --port 1433 --username 'a
nagios   18431  5.0  0.0 149692  8912 ?        R    07:29   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_mssql_health -t 60 --server 10.17.19.48 --port 1433 --
nagios   18515  1.0  0.0 110240  1168 pts/0    R+   07:29   0:00 ps -aux
nagios   18835  0.2  0.2 175344 26472 ?        S    05:28   0:18 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   18925  0.3  0.2 178744 29924 ?        S    03:46   0:42 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   18929  0.2  0.2 178068 29276 ?        S    03:46   0:39 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   18984  0.9  0.2 374460 30520 ?        S    07:28   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_oracle_health --connect 10.17.86.125:1521/ARIS --usern
nagios   18988  0.6  0.2 374456 30516 ?        S    07:28   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_oracle_health --connect 10.17.86.125:1521/ARIS --usern
nagios   19127  0.0  0.0 106100  1224 ?        S    Mar24   0:00 sh -c /usr/local/nagios/libexec/check_as400 -u $_HOSTAS400_USER$ -p $_HOSTAS400_PASSWD$  -H 10.104.112.
nagios   19153  0.2  0.5 4834544 71428 ?       Sl   Mar24   5:54 /usr/bin/java -cp /usr/local/nagios/libexec check_as400 -u test-p test123 -u $ -p $ -H 10.104.112.1
apache   21515  3.0  0.3 457004 37060 ?        S    Mar25  27:53 /usr/sbin/httpd
nagios   21520  0.2  0.2 177220 28328 ?        S    04:41   0:29 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   21532  0.2  0.2 177360 28356 ?        S    04:41   0:28 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
apache   21654  2.9  0.2 456488 36524 ?        S    Mar25  27:16 /usr/sbin/httpd
postgres 21677  0.0  0.0 217936  7596 ?        Ss   Mar25   0:36 postgres: nagiosxi nagiosxi [local] idle
nagios   21863  0.2  0.2 175592 26620 ?        S    05:01   0:23 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
apache   22051  2.1  0.2 456232 36320 ?        S    Mar25  17:47 /usr/sbin/httpd
nagios   22053  0.2  0.2 174612 25624 ?        S    06:44   0:07 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   22071  0.2  0.2 174596 25600 ?        S    06:44   0:06 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
postgres 22254  0.0  0.0 217936  7412 ?        Ss   Mar25   0:22 postgres: nagiosxi nagiosxi [local] idle
postgres 22480  0.0  0.0 217936  7476 ?        Ss   Mar25   0:37 postgres: nagiosxi nagiosxi [local] idle
apache   22602  2.2  0.3 456748 36688 ?        S    Mar25  18:37 /usr/sbin/httpd
postgres 22713  0.0  0.0 217936  7400 ?        Ss   Mar25   0:21 postgres: nagiosxi nagiosxi [local] idle
nagios   22753  0.0  0.0  39204  2052 ?        S    07:28   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 10.17.118.10 -t 60 -c rs_check_swap -a 70 85
nagios   23040  0.0  0.0  41320  1372 ?        Ss   Mar24   0:04 /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
nagios   23898 13.9  0.0 106956  2172 ?        S    07:20   1:14 bash ./process_disk_data
apache   24173  2.9  0.3 456816 36780 ?        S    Mar25  27:11 /usr/sbin/httpd
postgres 24360  0.0  0.0 218432  8076 ?        Ss   Mar25   0:38 postgres: nagiosxi nagiosxi [local] idle
nagios   25188  0.2  0.2 175420 26572 ?        S    06:11   0:13 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   25240  0.2  0.2 175472 26516 ?        S    06:11   0:13 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   25796  0.0  0.0 100372  1896 ?        R    07:27   0:00 sshd: nagios@pts/0
nagios   25804  0.1  0.0 108472  1896 pts/0    Ss   07:27   0:00 -bash
nagios   26399  0.0  0.0  39204  2048 ?        S    07:28   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 10.17.118.10 -t 60 -c check_memory -a 70 85  -C
nagios   26511  0.2  0.2 175972 27256 ?        S    04:22   0:29 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
apache   27168  2.7  0.2 456252 36368 ?        S    Mar25  24:36 /usr/sbin/httpd
nagios   27196  0.0  0.0 106100  1220 ?        S    Mar24   0:00 sh -c /usr/local/nagios/libexec/check_as400 -u $_HOSTAS400_USER$ -p $_HOSTAS400_PASSWD$  -H 10.104.112.
nagios   27223  0.2  0.6 4834544 73404 ?       Sl   Mar24   5:57 /usr/bin/java -cp /usr/local/nagios/libexec check_as400 -u test -p test123 -u $ -p $ -H 10.104.112.1
postgres 27300  0.0  0.0 217936  7440 ?        Ss   Mar25   0:31 postgres: nagiosxi nagiosxi [local] idle
root     27333  0.0  0.0 140184  1352 ?        S    07:00   0:00 CROND
nagios   27341  0.0  0.0 106096  1144 ?        Ss   07:00   0:00 /bin/sh -c /perfdata/scripts/process_data > /dev/null
nagios   27352  0.0  0.0 106100  1288 ?        S    07:00   0:00 /bin/bash /perfdata/scripts/process_data
nagios   27897  0.0  0.0 106100  1224 ?        S    Mar24   0:00 sh -c /usr/local/nagios/libexec/check_as400 -u $_HOSTAS400_USER$ -p $_HOSTAS400_PASSWD$  -H 10.104.112.
nagios   27916  0.2  0.6 4834544 73412 ?       Sl   Mar24   5:55 /usr/bin/java -cp /usr/local/nagios/libexec check_as400 -u NAGIOS -p cimb@123 -u $ -p $ -H 10.104.112.1
nagios   29435  0.2  0.2 174804 25996 ?        S    06:38   0:07 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   29444  0.3  0.2 174976 26132 ?        S    06:38   0:09 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   29492  0.0  0.0 137628  3012 ?        S    07:28   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   29635  0.0  0.0 106100  1224 ?        S    Mar24   0:00 sh -c /usr/local/nagios/libexec/check_as400 -u $_HOSTAS400_USER$ -p $_HOSTAS400_PASSWD$  -H 10.104.112.
nagios   29660  0.2  0.5 4834544 72872 ?       Sl   Mar24   6:15 /usr/bin/java -cp /usr/local/nagios/libexec check_as400 -u test-p test123 -u $ -p $ -H 10.104.112.1
root     31070  0.0  0.0  25408  1024 ?        Ssl  Mar24   0:00 automount --pid-file /var/run/autofs.pid
nagios   31646  0.0  0.0 106100  1220 ?        S    Mar24   0:00 sh -c /usr/local/nagios/libexec/check_as400 -u $_HOSTAS400_USER$ -p $_HOSTAS400_PASSWD$  -H 10.104.112.
nagios   31660  0.2  0.5 4834544 71952 ?       Sl   Mar24   5:57 /usr/bin/java -cp /usr/local/nagios/libexec check_as400 -u test-p test123 -u $ -p $ -H 10.104.112.1
apache   31782  2.9  0.3 461220 41504 ?        S    Mar25  26:56 /usr/sbin/httpd
postfix  31844  0.0  0.0  81360  3436 ?        S    06:51   0:00 pickup -l -t fifo -u
nagios   31869  0.3  0.2 174344 25440 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31870  0.1  0.0 138208  3464 ?        S    07:23   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31871  0.2  0.0 144608  8084 ?        S    07:23   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31872  0.3  0.0 146080  9560 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31873  0.2  0.1 167460 20496 ?        S    07:23   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31874  0.3  0.1 172884 23884 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31877  0.3  0.2 174348 25444 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31878  0.4  0.1 167428 20480 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31879  0.3  0.2 174352 25444 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31880  0.3  0.2 174260 25352 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31881  0.3  0.1 172904 23896 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31883  0.2  0.0 144612  8084 ?        S    07:23   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31884  0.5  0.2 174272 25368 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31885  0.3  0.2 174336 25432 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31887  0.2  0.1 167448 20488 ?        S    07:23   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31890  0.3  0.1 167432 20488 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31891  0.3  0.1 172808 23900 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31894  0.2  0.1 167440 20492 ?        S    07:23   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31898  0.2  0.2 174364 25460 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31899  0.3  0.1 172828 23916 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31900  0.3  0.1 172888 23884 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31903  0.2  0.0 146072  9548 ?        S    07:23   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31904  0.3  0.1 172872 23868 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31907  0.3  0.2 174396 25392 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31910  0.2  0.1 167436 20492 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31911  0.2  0.1 172900 23992 ?        S    07:23   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31913  0.3  0.1 172900 23904 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31915  0.1  0.0 138172  3424 ?        S    07:23   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31918  0.5  0.2 174280 25372 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31919  0.2  0.0 146096  9568 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31920  0.3  0.1 172780 23876 ?        S    07:23   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
nagios   31921  0.2  0.0 138188  3436 ?        S    07:23   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/var/mod_gea
apache   32426  3.1  0.2 456232 36052 ?        S    Mar25  28:44 /usr/sbin/httpd
postgres 32594  0.0  0.0 217936  7572 ?        Ss   Mar25   0:39 postgres: nagiosxi nagiosxi [local] idle
nagios   32622  0.0  0.0 106100  1220 ?        S    Mar24   0:00 sh -c /usr/local/nagios/libexec/check_as400 -u $_HOSTAS400_USER$ -p $_HOSTAS400_PASSWD$  -H 10.104.112.
nagios   32644  0.2  0.5 4834544 71424 ?       Sl   Mar24   6:20 /usr/bin/java -cp /usr/local/nagios/libexec check_as400 -u test -p test -u $ -p $ -H 10.104.112.1
[nagios@nagiosprodxi1 perfdata]$

Re: Mod Gearman Performance Issues Nagios 2014R2.6

Posted: Thu Mar 26, 2015 10:37 am
by tgriep
When the scheduling is bad, can you run the ps command and post it back here?

What is this command doing?

Code: Select all

bash ./process_host_data

Re: Mod Gearman Performance Issues Nagios 2014R2.6

Posted: Thu Mar 26, 2015 6:11 pm
by rajasegar
tgriep wrote:When the scheduling is bad, can you run the ps command and post it back here?

What is this command doing?

Code: Select all

bash ./process_host_data
Processing the host performance data and parse it to a format that can be imported into a database.

Re: Mod Gearman Performance Issues Nagios 2014R2.6

Posted: Fri Mar 27, 2015 11:06 am
by tgriep
Thanks, it is taking a lot of CPU.
Remember to post the ps aux output when the server is busy.

Re: Mod Gearman Performance Issues Nagios 2014R2.6

Posted: Sun Mar 29, 2015 7:23 pm
by rajasegar
tgriep wrote:Thanks, it is taking a lot of CPU.
Remember to post the ps aux output when the server is busy.
This only takes about 10 second to run. The CPU is very healthy
2015-03-30_08-20-56.png
2015-03-30_08-25-14.png

Re: Mod Gearman Performance Issues Nagios 2014R2.6

Posted: Mon Mar 30, 2015 3:19 pm
by tmcdonald
Let's pick back up when the CPU jumps/scheduling becomes bad again and you can provide the ps -aux output.

Re: Mod Gearman Performance Issues Nagios 2014R2.6

Posted: Tue Mar 31, 2015 1:25 am
by rajasegar
2015-03-31_14-22-13.png
It was about 600 whole day and dropped to less than 200 now.

Code: Select all

[nagios@nagiosprodxi1 libexec]$ ps -aux
Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.8/FAQ
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root         1  0.0  0.0  19364  1536 ?        Ss   13:18   0:01 /sbin/init
root         2  0.0  0.0      0     0 ?        S    13:18   0:00 [kthreadd]
root         3  2.1  0.0      0     0 ?        S    13:18   1:23 [migration/0]
root         4  1.2  0.0      0     0 ?        S    13:18   0:48 [ksoftirqd/0]
root         5  0.0  0.0      0     0 ?        S    13:18   0:00 [migration/0]
root         6  0.1  0.0      0     0 ?        S    13:18   0:07 [watchdog/0]
root         7  0.0  0.0      0     0 ?        S    13:18   0:03 [migration/1]
root         8  0.0  0.0      0     0 ?        S    13:18   0:00 [migration/1]
root         9  0.0  0.0      0     0 ?        S    13:18   0:00 [ksoftirqd/1]
root        10  0.0  0.0      0     0 ?        S    13:18   0:00 [watchdog/1]
root        11  0.0  0.0      0     0 ?        S    13:18   0:02 [migration/2]
root        12  0.0  0.0      0     0 ?        S    13:18   0:00 [migration/2]
root        13  0.0  0.0      0     0 ?        S    13:18   0:00 [ksoftirqd/2]
root        14  0.0  0.0      0     0 ?        S    13:18   0:00 [watchdog/2]
root        15  0.0  0.0      0     0 ?        S    13:18   0:02 [migration/3]
root        16  0.0  0.0      0     0 ?        S    13:18   0:00 [migration/3]
root        17  0.0  0.0      0     0 ?        S    13:18   0:00 [ksoftirqd/3]
root        18  0.0  0.0      0     0 ?        S    13:18   0:00 [watchdog/3]
root        19  0.0  0.0      0     0 ?        S    13:18   0:02 [migration/4]
root        20  0.0  0.0      0     0 ?        S    13:18   0:00 [migration/4]
root        21  0.0  0.0      0     0 ?        S    13:18   0:00 [ksoftirqd/4]
root        22  0.0  0.0      0     0 ?        S    13:18   0:00 [watchdog/4]
root        23  0.0  0.0      0     0 ?        S    13:18   0:01 [migration/5]
root        24  0.0  0.0      0     0 ?        S    13:18   0:00 [migration/5]
root        25  0.0  0.0      0     0 ?        S    13:18   0:00 [ksoftirqd/5]
root        26  0.0  0.0      0     0 ?        S    13:18   0:00 [watchdog/5]
root        27  2.7  0.0      0     0 ?        S    13:18   1:45 [migration/6]
root        28  0.0  0.0      0     0 ?        S    13:18   0:00 [migration/6]
root        29  1.9  0.0      0     0 ?        S    13:18   1:13 [ksoftirqd/6]
root        30  0.2  0.0      0     0 ?        S    13:18   0:10 [watchdog/6]
root        31  0.0  0.0      0     0 ?        S    13:18   0:03 [migration/7]
root        32  0.0  0.0      0     0 ?        S    13:18   0:00 [migration/7]
root        33  0.0  0.0      0     0 ?        S    13:18   0:00 [ksoftirqd/7]
root        34  0.0  0.0      0     0 ?        S    13:18   0:00 [watchdog/7]
root        35  0.0  0.0      0     0 ?        S    13:18   0:03 [migration/8]
root        36  0.0  0.0      0     0 ?        S    13:18   0:00 [migration/8]
root        37  0.0  0.0      0     0 ?        S    13:18   0:00 [ksoftirqd/8]
root        38  0.0  0.0      0     0 ?        S    13:18   0:00 [watchdog/8]
root        39  0.0  0.0      0     0 ?        S    13:18   0:02 [migration/9]
root        40  0.0  0.0      0     0 ?        S    13:18   0:00 [migration/9]
root        41  0.0  0.0      0     0 ?        S    13:18   0:00 [ksoftirqd/9]
root        42  0.0  0.0      0     0 ?        S    13:18   0:00 [watchdog/9]
root        43  0.0  0.0      0     0 ?        S    13:18   0:02 [migration/10]
root        44  0.0  0.0      0     0 ?        S    13:18   0:00 [migration/10]
root        45  0.0  0.0      0     0 ?        S    13:18   0:00 [ksoftirqd/10]
root        46  0.0  0.0      0     0 ?        S    13:18   0:00 [watchdog/10]
root        47  0.0  0.0      0     0 ?        S    13:18   0:01 [migration/11]
root        48  0.0  0.0      0     0 ?        S    13:18   0:00 [migration/11]
root        49  0.0  0.0      0     0 ?        S    13:18   0:00 [ksoftirqd/11]
root        50  0.0  0.0      0     0 ?        S    13:18   0:00 [watchdog/11]
root        51  1.0  0.0      0     0 ?        S    13:18   0:40 [events/0]
root        52  0.0  0.0      0     0 ?        S    13:18   0:00 [events/1]
root        53  0.0  0.0      0     0 ?        S    13:18   0:00 [events/2]
root        54  0.0  0.0      0     0 ?        S    13:18   0:00 [events/3]
root        55  0.0  0.0      0     0 ?        S    13:18   0:00 [events/4]
root        56  0.0  0.0      0     0 ?        S    13:18   0:00 [events/5]
root        57  1.1  0.0      0     0 ?        S    13:18   0:45 [events/6]
root        58  0.0  0.0      0     0 ?        S    13:18   0:01 [events/7]
root        59  0.0  0.0      0     0 ?        S    13:18   0:00 [events/8]
root        60  0.0  0.0      0     0 ?        S    13:18   0:00 [events/9]
root        61  0.0  0.0      0     0 ?        S    13:18   0:00 [events/10]
root        62  0.0  0.0      0     0 ?        S    13:18   0:00 [events/11]
root        63  0.0  0.0      0     0 ?        S    13:18   0:00 [cgroup]
root        64  0.0  0.0      0     0 ?        S    13:18   0:00 [khelper]
root        65  0.0  0.0      0     0 ?        S    13:18   0:00 [netns]
root        66  0.0  0.0      0     0 ?        S    13:18   0:00 [async/mgr]
root        67  0.0  0.0      0     0 ?        S    13:18   0:00 [pm]
root        68  0.0  0.0      0     0 ?        S    13:18   0:00 [sync_supers]
root        69  0.0  0.0      0     0 ?        S    13:18   0:00 [bdi-default]
root        70  0.0  0.0      0     0 ?        S    13:18   0:00 [kintegrityd/0]
root        71  0.0  0.0      0     0 ?        S    13:18   0:00 [kintegrityd/1]
root        72  0.0  0.0      0     0 ?        S    13:18   0:00 [kintegrityd/2]
root        73  0.0  0.0      0     0 ?        S    13:18   0:00 [kintegrityd/3]
root        74  0.0  0.0      0     0 ?        S    13:18   0:00 [kintegrityd/4]
root        75  0.0  0.0      0     0 ?        S    13:18   0:00 [kintegrityd/5]
root        76  0.0  0.0      0     0 ?        S    13:18   0:00 [kintegrityd/6]
root        77  0.0  0.0      0     0 ?        S    13:18   0:00 [kintegrityd/7]
root        78  0.0  0.0      0     0 ?        S    13:18   0:00 [kintegrityd/8]
root        79  0.0  0.0      0     0 ?        S    13:18   0:00 [kintegrityd/9]
root        80  0.0  0.0      0     0 ?        S    13:18   0:00 [kintegrityd/10]
root        81  0.0  0.0      0     0 ?        S    13:18   0:00 [kintegrityd/11]
root        82  2.7  0.0      0     0 ?        S    13:18   1:44 [kblockd/0]
root        83  0.0  0.0      0     0 ?        S    13:18   0:03 [kblockd/1]
root        84  0.1  0.0      0     0 ?        S    13:18   0:03 [kblockd/2]
root        85  0.0  0.0      0     0 ?        S    13:18   0:01 [kblockd/3]
root        86  0.0  0.0      0     0 ?        S    13:18   0:02 [kblockd/4]
root        87  0.0  0.0      0     0 ?        S    13:18   0:01 [kblockd/5]
root        88  3.0  0.0      0     0 ?        S    13:18   1:56 [kblockd/6]
root        89  0.0  0.0      0     0 ?        S    13:18   0:02 [kblockd/7]
root        90  0.0  0.0      0     0 ?        S    13:18   0:01 [kblockd/8]
root        91  0.0  0.0      0     0 ?        S    13:18   0:01 [kblockd/9]
root        92  0.0  0.0      0     0 ?        S    13:18   0:03 [kblockd/10]
root        93  0.0  0.0      0     0 ?        S    13:18   0:02 [kblockd/11]
root        94  0.0  0.0      0     0 ?        S    13:18   0:00 [kacpid]
root        95  0.0  0.0      0     0 ?        S    13:18   0:00 [kacpi_notify]
root        96  0.0  0.0      0     0 ?        S    13:18   0:00 [kacpi_hotplug]
root        97  0.0  0.0      0     0 ?        S    13:18   0:00 [ata_aux]
root        98  0.0  0.0      0     0 ?        S    13:18   0:00 [ata_sff/0]
root        99  0.0  0.0      0     0 ?        S    13:18   0:00 [ata_sff/1]
root       100  0.0  0.0      0     0 ?        S    13:18   0:00 [ata_sff/2]
root       101  0.0  0.0      0     0 ?        S    13:18   0:00 [ata_sff/3]
root       102  0.0  0.0      0     0 ?        S    13:18   0:00 [ata_sff/4]
root       103  0.0  0.0      0     0 ?        S    13:18   0:00 [ata_sff/5]
root       104  0.0  0.0      0     0 ?        S    13:18   0:00 [ata_sff/6]
root       105  0.0  0.0      0     0 ?        S    13:18   0:00 [ata_sff/7]
root       106  0.0  0.0      0     0 ?        S    13:18   0:00 [ata_sff/8]
root       107  0.0  0.0      0     0 ?        S    13:18   0:00 [ata_sff/9]
root       108  0.0  0.0      0     0 ?        S    13:18   0:00 [ata_sff/10]
root       109  0.0  0.0      0     0 ?        S    13:18   0:00 [ata_sff/11]
root       110  0.0  0.0      0     0 ?        S    13:18   0:00 [ksuspend_usbd]
root       111  0.0  0.0      0     0 ?        S    13:18   0:00 [khubd]
root       112  0.0  0.0      0     0 ?        S    13:18   0:00 [kseriod]
root       113  0.0  0.0      0     0 ?        S    13:18   0:00 [md/0]
root       114  0.0  0.0      0     0 ?        S    13:18   0:00 [md/1]
root       115  0.0  0.0      0     0 ?        S    13:18   0:00 [md/2]
root       116  0.0  0.0      0     0 ?        S    13:18   0:00 [md/3]
root       117  0.0  0.0      0     0 ?        S    13:18   0:00 [md/4]
root       118  0.0  0.0      0     0 ?        S    13:18   0:00 [md/5]
root       119  0.0  0.0      0     0 ?        S    13:18   0:00 [md/6]
root       120  0.0  0.0      0     0 ?        S    13:18   0:00 [md/7]
root       121  0.0  0.0      0     0 ?        S    13:18   0:00 [md/8]
root       122  0.0  0.0      0     0 ?        S    13:18   0:00 [md/9]
root       123  0.0  0.0      0     0 ?        S    13:18   0:00 [md/10]
root       124  0.0  0.0      0     0 ?        S    13:18   0:00 [md/11]
root       125  0.0  0.0      0     0 ?        S    13:18   0:00 [md_misc/0]
root       126  0.0  0.0      0     0 ?        S    13:18   0:00 [md_misc/1]
root       127  0.0  0.0      0     0 ?        S    13:18   0:00 [md_misc/2]
root       128  0.0  0.0      0     0 ?        S    13:18   0:00 [md_misc/3]
root       129  0.0  0.0      0     0 ?        S    13:18   0:00 [md_misc/4]
root       130  0.0  0.0      0     0 ?        S    13:18   0:00 [md_misc/5]
root       131  0.0  0.0      0     0 ?        S    13:18   0:00 [md_misc/6]
root       132  0.0  0.0      0     0 ?        S    13:18   0:00 [md_misc/7]
root       133  0.0  0.0      0     0 ?        S    13:18   0:00 [md_misc/8]
root       134  0.0  0.0      0     0 ?        S    13:18   0:00 [md_misc/9]
root       135  0.0  0.0      0     0 ?        S    13:18   0:00 [md_misc/10]
root       136  0.0  0.0      0     0 ?        S    13:18   0:00 [md_misc/11]
root       137  0.0  0.0      0     0 ?        S    13:18   0:00 [linkwatch]
root       138  0.0  0.0      0     0 ?        S    13:18   0:00 [khungtaskd]
root       139  0.0  0.0      0     0 ?        S    13:18   0:00 [kswapd0]
root       140  0.0  0.0      0     0 ?        S    13:18   0:00 [kswapd1]
root       141  0.0  0.0      0     0 ?        SN   13:18   0:00 [ksmd]
root       142  0.0  0.0      0     0 ?        SN   13:18   0:00 [khugepaged]
root       143  0.0  0.0      0     0 ?        S    13:18   0:00 [aio/0]
root       144  0.0  0.0      0     0 ?        S    13:18   0:00 [aio/1]
root       145  0.0  0.0      0     0 ?        S    13:18   0:00 [aio/2]
root       146  0.0  0.0      0     0 ?        S    13:18   0:00 [aio/3]
root       147  0.0  0.0      0     0 ?        S    13:18   0:00 [aio/4]
root       148  0.0  0.0      0     0 ?        S    13:18   0:00 [aio/5]
root       149  0.0  0.0      0     0 ?        S    13:18   0:00 [aio/6]
root       150  0.0  0.0      0     0 ?        S    13:18   0:00 [aio/7]
root       151  0.0  0.0      0     0 ?        S    13:18   0:00 [aio/8]
root       152  0.0  0.0      0     0 ?        S    13:18   0:00 [aio/9]
root       153  0.0  0.0      0     0 ?        S    13:18   0:00 [aio/10]
root       154  0.0  0.0      0     0 ?        S    13:18   0:00 [aio/11]
root       155  0.0  0.0      0     0 ?        S    13:18   0:00 [crypto/0]
root       156  0.0  0.0      0     0 ?        S    13:18   0:00 [crypto/1]
root       157  0.0  0.0      0     0 ?        S    13:18   0:00 [crypto/2]
root       158  0.0  0.0      0     0 ?        S    13:18   0:00 [crypto/3]
root       159  0.0  0.0      0     0 ?        S    13:18   0:00 [crypto/4]
root       160  0.0  0.0      0     0 ?        S    13:18   0:00 [crypto/5]
root       161  0.0  0.0      0     0 ?        S    13:18   0:00 [crypto/6]
root       162  0.0  0.0      0     0 ?        S    13:18   0:00 [crypto/7]
root       163  0.0  0.0      0     0 ?        S    13:18   0:00 [crypto/8]
root       164  0.0  0.0      0     0 ?        S    13:18   0:00 [crypto/9]
root       165  0.0  0.0      0     0 ?        S    13:18   0:00 [crypto/10]
root       166  0.0  0.0      0     0 ?        S    13:18   0:00 [crypto/11]
root       171  0.0  0.0      0     0 ?        S    13:18   0:00 [kthrotld/0]
root       172  0.0  0.0      0     0 ?        S    13:18   0:00 [kthrotld/1]
root       173  0.0  0.0      0     0 ?        S    13:18   0:00 [kthrotld/2]
root       174  0.0  0.0      0     0 ?        S    13:18   0:00 [kthrotld/3]
root       175  0.0  0.0      0     0 ?        S    13:18   0:00 [kthrotld/4]
root       176  0.0  0.0      0     0 ?        S    13:18   0:00 [kthrotld/5]
root       177  0.0  0.0      0     0 ?        S    13:18   0:00 [kthrotld/6]
root       178  0.0  0.0      0     0 ?        S    13:18   0:00 [kthrotld/7]
root       179  0.0  0.0      0     0 ?        S    13:18   0:00 [kthrotld/8]
root       180  0.0  0.0      0     0 ?        S    13:18   0:00 [kthrotld/9]
root       181  0.0  0.0      0     0 ?        S    13:18   0:00 [kthrotld/10]
root       182  0.0  0.0      0     0 ?        S    13:18   0:00 [kthrotld/11]
root       183  0.0  0.0      0     0 ?        S    13:18   0:00 [pciehpd]
root       185  0.0  0.0      0     0 ?        S    13:18   0:00 [kpsmoused]
root       186  0.0  0.0      0     0 ?        S    13:18   0:00 [usbhid_resumer]
root       217  0.0  0.0      0     0 ?        S    13:18   0:00 [kstriped]
root       315  0.0  0.0      0     0 ?        S    13:18   0:00 [scsi_eh_0]
root       316  0.0  0.0      0     0 ?        S    13:18   0:00 [scsi_eh_1]
apache     377  6.6  0.2 455648 35492 ?        S    13:21   4:03 /usr/sbin/httpd
root       404  0.0  0.0      0     0 ?        S    13:18   0:00 [scsi_eh_2]
root       405  0.0  0.0      0     0 ?        S    13:18   0:00 [vmw_pvscsi_wq_2]
postgres   443  0.1  0.0 217936  6888 ?        Ss   13:21   0:07 postgres: nagiosxi nagiosxi [local] idle
root       474  0.0  0.0      0     0 ?        S    13:18   0:00 [kdmflush]
root       476  0.0  0.0      0     0 ?        S    13:18   0:00 [kdmflush]
root       493  0.5  0.0      0     0 ?        S    13:18   0:21 [jbd2/dm-0-8]
root       494  0.0  0.0      0     0 ?        S    13:18   0:00 [ext4-dio-unwrit]
root       579  0.0  0.0  11032  1120 ?        S<s  13:18   0:00 /sbin/udevd -d
root       801  0.0  0.0      0     0 ?        S    13:18   0:00 [vmmemctl]
root      1216  0.0  0.0      0     0 ?        S    13:18   0:00 [kdmflush]
root      1218  0.0  0.0      0     0 ?        S    13:18   0:00 [kdmflush]
root      1219  0.0  0.0  11032  1120 ?        S<   13:18   0:00 /sbin/udevd -d
root      1277  0.0  0.0      0     0 ?        S    13:18   0:00 [jbd2/sda1-8]
root      1278  0.0  0.0      0     0 ?        S    13:18   0:00 [ext4-dio-unwrit]
root      1279  0.1  0.0      0     0 ?        S    13:18   0:04 [jbd2/dm-2-8]
root      1280  0.0  0.0      0     0 ?        S    13:18   0:00 [ext4-dio-unwrit]
root      1281  0.0  0.0      0     0 ?        S    13:18   0:01 [jbd2/dm-3-8]
root      1282  0.0  0.0      0     0 ?        S    13:18   0:00 [ext4-dio-unwrit]
root      1337  0.0  0.0      0     0 ?        S    13:18   0:00 [kauditd]
root      1414  2.3  0.0      0     0 ?        S    13:18   1:28 [flush-253:0]
root      1415  0.0  0.0      0     0 ?        S    13:18   0:01 [flush-253:2]
root      1416  0.0  0.0      0     0 ?        S    13:18   0:00 [flush-253:3]
root      1582  0.3  0.0 179264  4400 ?        S    13:18   0:12 /usr/sbin/vmtoolsd
root      1914  0.0  0.0  27664   892 ?        S<sl 13:19   0:02 auditd
root      1939  0.0  0.0 251196  1672 ?        Sl   13:19   0:00 /sbin/rsyslogd -i /var/run/syslogd.pid -c 5
root      1969  0.0  0.0  10952   684 ?        Ss   13:19   0:01 irqbalance --pid=/var/run/irqbalance.pid
rpc       1983  0.0  0.0  18976   896 ?        Ss   13:19   0:00 rpcbind
dbus      2082  0.0  0.0  21800  1388 ?        Ss   13:19   0:00 dbus-daemon --system
root      2092  0.0  0.0  82696  4460 ?        Ss   13:19   0:00 NetworkManager --pid-file=/var/run/NetworkManager/NetworkManager.pid
root      2096  0.0  0.0  58064  2444 ?        S    13:19   0:00 /usr/sbin/modem-manager
rpcuser   2111  0.0  0.0  23348  1376 ?        Ss   13:19   0:00 rpc.statd
root      2153  0.0  0.0 189332  3332 ?        Ss   13:19   0:00 cupsd -C /etc/cups/cupsd.conf
root      2164  0.0  0.0  44972   692 ?        Ss   13:19   0:00 /usr/sbin/wpa_supplicant -c /etc/wpa_supplicant/wpa_supplicant.conf -B -u -f /var/log/wpa_su
root      2191  0.0  0.0   4080   644 ?        Ss   13:19   0:00 /usr/sbin/acpid
68        2205  0.0  0.0  37932  3792 ?        Ssl  13:19   0:00 hald
root      2206  0.0  0.0  20328  1180 ?        S    13:19   0:00 hald-runner
root      2248  0.0  0.0  22448  1092 ?        S    13:19   0:00 hald-addon-input: Listening on /dev/input/event0 /dev/input/event2
68        2253  0.0  0.0  17936  1032 ?        S    13:19   0:00 hald-addon-acpi: listening on acpid socket /var/run/acpid.socket
root      2273  0.0  0.0  25408  1176 ?        Ssl  13:19   0:00 automount --pid-file /var/run/autofs.pid
root      2285  0.0  0.0   6260   300 ?        Ss   13:19   0:00 /usr/sbin/mcelog --daemon
nagios    2289  0.0  0.0 293104   972 ?        S    13:41   0:00 /usr/local/nagios/bin/npcd -d -f /usr/local/nagios/etc/pnp/npcd.cfg
root      2297  0.0  0.0  66608  1240 ?        Ss   13:19   0:00 /usr/sbin/sshd
root      2305  0.0  0.0  22180  1028 ?        Ss   13:19   0:00 xinetd -stayalive -pidfile /var/run/xinetd.pid
ntp       2313  0.0  0.0  26496  1952 ?        Ss   13:19   0:00 ntpd -u ntp:ntp -p /var/run/ntpd.pid -g
root      2352  0.0  0.0 100368  4380 ?        Ss   13:19   0:00 sshd: nagios [priv]
root      2435  0.0  0.0  81280  3420 ?        Ss   13:19   0:00 /usr/libexec/postfix/master
postfix   2444  0.0  0.0  81532  3540 ?        S    13:19   0:00 qmgr -l -t fifo -u
root      2459  0.0  0.0 110320   940 ?        Ss   13:19   0:00 /usr/sbin/abrtd
root      2467  0.0  0.0 108212   932 ?        Ss   13:19   0:00 abrt-dump-oops -d /var/spool/abrt -rwx /var/log/messages
root      2525  0.0  0.0 397224  6516 ?        Ssl  13:19   0:00 /usr/local/avamar/bin/avagent.bin --bindir="/usr/local/avamar/bin" --vardir="/usr/local/avam
root      2535  0.0  0.0 117296  1296 ?        Ss   13:19   0:00 crond
root      2555  0.0  0.0  21540   476 ?        Ss   13:19   0:00 /usr/sbin/atd
root      2573  0.0  0.0 100900   392 ?        Ss   13:19   0:00 rhnsd
root      2581  0.0  0.0 104020   588 ?        Ss   13:19   0:00 /usr/bin/rhsmcertd
ajaxterm  2603  0.0  0.0 170332  7644 ?        Sl   13:19   0:03 python /usr/share/ajaxterm/ajaxterm.py --daemon --port=8022 --uid=ajaxterm
root      2617  0.0  0.0  62340   596 ?        Ss   13:19   0:00 /usr/sbin/certmonger -S -p /var/run/certmonger.pid
nagios    2696  0.0  0.0  41320  1368 ?        Ss   13:19   0:00 /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
nagios    2760  0.0  0.0 100368  1900 ?        S    13:19   0:00 sshd: nagios@pts/1
nagios    2761  0.0  0.0 108472  1912 pts/1    Ss   13:19   0:00 -bash
root      2830  0.0  0.0 133936  2168 ?        Ssl  13:19   0:00 /usr/sbin/gdm-binary -nodaemon
root      2835  0.0  0.0   4064   536 tty2     Ss+  13:19   0:00 /sbin/mingetty /dev/tty2
root      2837  0.0  0.0   4064   536 tty3     Ss+  13:19   0:00 /sbin/mingetty /dev/tty3
root      2839  0.0  0.0   4064   532 tty4     Ss+  13:19   0:00 /sbin/mingetty /dev/tty4
root      2841  0.0  0.0  11028  1108 ?        S<   13:19   0:00 /sbin/udevd -d
root      2842  0.0  0.0   4064   536 tty5     Ss+  13:19   0:00 /sbin/mingetty /dev/tty5
root      2844  0.0  0.0   4064   532 tty6     Ss+  13:19   0:00 /sbin/mingetty /dev/tty6
root      2869  0.0  0.0 164572  3040 ?        Sl   13:19   0:00 /usr/libexec/gdm-simple-slave --display-id /org/gnome/DisplayManager/Display1 --force-active
root      2872  0.0  0.1 151752 22928 tty1     Ss+  13:19   0:01 /usr/bin/Xorg :0 -nr -verbose -audit 4 -auth /var/run/gdm/auth-for-gdm-qYrxrG/database -noli
root      2890  0.0  0.0 4116476 3456 ?        Sl   13:19   0:00 /usr/sbin/console-kit-daemon --no-daemon
gdm       2960  0.0  0.0  20040   640 ?        S    13:19   0:00 /usr/bin/dbus-launch --exit-with-session
gdm       2961  0.0  0.0  21536   936 ?        Ss   13:19   0:00 /bin/dbus-daemon --fork --print-pid 5 --print-address 7 --session
gdm       2962  0.0  0.0 269132  7880 ?        Ssl  13:19   0:00 /usr/bin/gnome-session --autostart=/usr/share/gdm/autostart/LoginWindow/
root      2965  0.0  0.0  49828  2644 ?        S    13:19   0:00 /usr/libexec/devkit-power-daemon
gdm       2969  0.0  0.0 132184  4232 ?        S    13:19   0:00 /usr/libexec/gconfd-2
gdm       2985  0.0  0.0 120332  4432 ?        S    13:19   0:00 /usr/libexec/at-spi-registryd
gdm       2989  0.0  0.1 348952 12784 ?        Ssl  13:19   0:00 /usr/libexec/gnome-settings-daemon --gconf-prefix=/apps/gdm/simple-greeter/settings-manager-
gdm       2991  0.0  0.0 358476  4996 ?        Ssl  13:19   0:00 /usr/libexec/bonobo-activation-server --ac-activate --ior-output-fd=12
gdm       3014  0.0  0.0 135108  1896 ?        S    13:19   0:00 /usr/libexec/gvfsd
gdm       3016  0.0  0.0 286960  9912 ?        S    13:19   0:00 metacity
gdm       3022  0.0  0.0 273796  8640 ?        S    13:19   0:00 gnome-power-manager
gdm       3023  0.0  0.0 248360  7400 ?        S    13:19   0:00 /usr/libexec/polkit-gnome-authentication-agent-1
gdm       3024  0.0  0.1 382544 15888 ?        S    13:19   0:00 /usr/libexec/gdm-simple-greeter
root      3030  0.0  0.0  52444  4168 ?        S    13:19   0:00 /usr/libexec/polkit-1/polkitd
gdm       3034  0.0  0.0 346200  2848 ?        S<sl 13:19   0:00 /usr/bin/pulseaudio --start --log-target=syslog
rtkit     3037  0.0  0.0 168456  1192 ?        SNl  13:19   0:00 /usr/libexec/rtkit-daemon
root      3049  0.0  0.0 142040  2084 ?        S    13:19   0:00 pam: gdm-password
postgres  3248  0.0  0.0 216360  5116 ?        S    13:19   0:01 /usr/bin/postmaster -p 5432 -D /var/lib/pgsql/data
postgres  3250  0.0  0.0 179372  1072 ?        Ss   13:19   0:02 postgres: logger process
postgres  3252  0.1  0.0 216476  7220 ?        Ss   13:19   0:05 postgres: writer process
postgres  3253  0.1  0.0 216360  1388 ?        Ss   13:19   0:04 postgres: wal writer process
postgres  3254  0.0  0.0 216628  1584 ?        Ss   13:19   0:01 postgres: autovacuum launcher process
postgres  3255  0.1  0.0 179636  1304 ?        Ss   13:19   0:04 postgres: stats collector process
nagios    3275  0.0  0.0  50272   636 ?        Ss   13:19   0:00 /usr/local/nagios/bin/ndo2db -c /usr/local/nagios/etc/ndo2db.cfg
root      3289  0.0  0.1 335768 14036 ?        Ss   13:19   0:01 /usr/sbin/httpd
gearmand  3303 18.9  0.0 546284  9488 ?        Ssl  13:19  11:56 /usr/sbin/gearmand -d
apache    3315  5.9  0.3 460284 40456 ?        S    13:19   3:45 /usr/sbin/httpd
apache    3318  6.6  0.3 460524 40628 ?        S    13:19   4:12 /usr/sbin/httpd
apache    3319  7.0  0.3 458540 38796 ?        R    13:19   4:28 /usr/sbin/httpd
apache    3320  7.1  0.2 454472 34456 ?        S    13:19   4:31 /usr/sbin/httpd
apache    3321  6.7  0.2 454268 34240 ?        S    13:19   4:15 /usr/sbin/httpd
apache    3322  6.0  0.2 454596 34552 ?        S    13:19   3:49 /usr/sbin/httpd
apache    3323  6.7  0.7 510184 90272 ?        S    13:19   4:15 /usr/sbin/httpd
apache    3324  6.6  0.3 457240 37172 ?        S    13:19   4:10 /usr/sbin/httpd
nagios    3351  0.0  0.0  38160   944 ?        Ss   13:19   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
postgres  3368  0.2  0.0 218400  7272 ?        Ss   13:19   0:08 postgres: nagiosxi nagiosxi [local] idle
postgres  3373  0.1  0.0 218068  6968 ?        Ss   13:19   0:07 postgres: nagiosxi nagiosxi [local] idle
postgres  3374  0.2  0.0 217932  6924 ?        Ss   13:19   0:07 postgres: nagiosxi nagiosxi [local] idle
postgres  3375  0.1  0.0 217932  6908 ?        Ss   13:19   0:07 postgres: nagiosxi nagiosxi [local] idle
postgres  3377  0.1  0.0 217932  6912 ?        Ss   13:19   0:07 postgres: nagiosxi nagiosxi [local] idle
postgres  3378  0.1  0.0 217940  6896 ?        Ss   13:19   0:07 postgres: nagiosxi nagiosxi [local] idle
postgres  3379  0.1  0.0 217936  6944 ?        Ss   13:19   0:07 postgres: nagiosxi nagiosxi [local] idle
nagios    3386  8.3  1.0 329172 123604 ?       Ssl  13:19   5:17 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
nagios    3388  0.0  0.0  10016   924 ?        S    13:19   0:00 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3389  0.0  0.0  10016   920 ?        S    13:19   0:02 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3390  0.0  0.0  10016   916 ?        S    13:19   0:02 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3391  0.0  0.0  10016   928 ?        S    13:19   0:01 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3392  0.0  0.0  10016   920 ?        S    13:19   0:02 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3393  0.0  0.0  10016   924 ?        S    13:19   0:02 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3394  0.0  0.0  10016   924 ?        S    13:19   0:01 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3396  0.0  0.0  10016   924 ?        S    13:19   0:01 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3397  0.0  0.0  10016   928 ?        S    13:19   0:00 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3398  0.0  0.0  10016   932 ?        S    13:19   0:00 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3399  0.0  0.0  10016   924 ?        S    13:19   0:01 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3400  0.0  0.0  10016   928 ?        S    13:19   0:01 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3401  0.0  0.0  10016   916 ?        S    13:19   0:00 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3402  0.0  0.0  10016   924 ?        S    13:19   0:02 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3403  0.0  0.0  10016   932 ?        S    13:19   0:01 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3404  0.0  0.0  10016   928 ?        S    13:19   0:00 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3405  0.0  0.0  10016   924 ?        S    13:19   0:01 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3406  0.0  0.0  10016   928 ?        S    13:19   0:01 /usr/local/nagios/bin/nagios --worker /usr/local/nagios/var/rw/nagios.qh
nagios    3408  0.4  0.0  50272  1500 ?        S    13:19   0:18 /usr/local/nagios/bin/ndo2db -c /usr/local/nagios/etc/ndo2db.cfg
nagios    3409 14.8  0.0  55844  7112 ?        S    13:19   9:22 /usr/local/nagios/bin/ndo2db -c /usr/local/nagios/etc/ndo2db.cfg
postgres  3419  0.1  0.0 218072  6940 ?        Ss   13:19   0:07 postgres: nagiosxi nagiosxi [local] idle
apache    3432  6.1  0.2 455372 35188 ?        S    13:19   3:50 /usr/sbin/httpd
apache    3433  5.4  0.3 464504 44444 ?        S    13:19   3:26 /usr/sbin/httpd
nagios    3437  0.0  0.1  70040 19792 ?        S    13:19   0:02 /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
nagios    3441  0.2  0.2 175616 26616 ?        S    13:19   0:10 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3442  0.2  0.2 174864 26044 ?        S    13:19   0:09 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3443  0.2  0.2 174964 25976 ?        S    13:19   0:10 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3444  0.2  0.2 175428 26616 ?        S    13:19   0:10 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3445  0.2  0.2 175564 26620 ?        S    13:19   0:10 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3446  0.3  0.2 175772 26772 ?        S    13:19   0:11 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3450  0.2  0.2 175584 26592 ?        S    13:19   0:10 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3513  0.2  0.2 175408 26636 ?        S    13:19   0:10 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3516  0.2  0.2 175212 26184 ?        S    13:19   0:08 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3518  0.2  0.2 174792 25980 ?        S    13:19   0:09 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3520  0.2  0.2 175192 26324 ?        S    13:19   0:09 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3522  0.2  0.2 175360 26548 ?        S    13:19   0:10 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3527  0.2  0.2 175448 26716 ?        S    13:19   0:09 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3529  0.2  0.2 175232 26368 ?        S    13:19   0:09 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3531  0.2  0.2 175352 26392 ?        S    13:19   0:10 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3540  0.2  0.2 175252 26412 ?        S    13:19   0:11 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3542  0.2  0.2 175184 26436 ?        S    13:19   0:09 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3543  0.2  0.2 174892 26096 ?        S    13:19   0:08 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3544  0.2  0.2 175240 26388 ?        S    13:19   0:10 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3546  0.2  0.2 175204 26344 ?        S    13:19   0:08 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3547  0.2  0.2 175292 26416 ?        S    13:19   0:09 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3549  0.2  0.2 175232 26292 ?        S    13:19   0:10 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3553  0.2  0.2 174652 26040 ?        S    13:19   0:08 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3557  0.2  0.2 175452 26672 ?        S    13:19   0:09 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    3575  0.0  0.0  39348  2352 ?        S    14:22   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 10.104.18.27 -t 60 -c rs_check_cpu_stats -a 105,1
nagios    3668  0.0  0.0  39348  2356 ?        S    14:22   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 10.17.19.24 -t 60 -c rs_check_cpu_stats -a 105,10
postgres  3684  0.1  0.0 218072  6912 ?        Ss   13:19   0:07 postgres: nagiosxi nagiosxi [local] idle
postgres  3689  0.1  0.0 218212  7024 ?        Ss   13:19   0:07 postgres: nagiosxi nagiosxi [local] idle
nagios    3757  0.0  0.0  39348  2356 ?        S    14:22   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 10.17.19.12 -t 60 -c rs_check_cpu_stats -a 105,10
apache    4553  6.8  0.3 459196 39388 ?        S    13:32   3:25 /usr/sbin/httpd
postgres  4558  0.1  0.0 218280  7244 ?        Ss   13:32   0:05 postgres: nagiosxi nagiosxi [local] idle
nagios    4797  0.2  0.2 174692 25940 ?        S    13:32   0:07 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    4808  0.2  0.2 175048 26128 ?        S    13:32   0:08 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    4816  0.2  0.2 174836 25968 ?        S    13:32   0:07 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios    6429  0.0  0.0 106100  1288 ?        S    14:22   0:00 /bin/bash /usr/local/nagios/libexec/as400ExecSSL2 -w 8 -c 8 -v RSMONJOBS_SMYU2MISC_DURATION
nagios    6481 38.5  0.3 4856172 47316 ?       Sl   14:22   0:00 /usr/bin/java -cp /usr/local/nagios/libexec check_as400_jobs -u NAGIOS -p k3ep@wd -H 172.29.
nagios    6568  5.0  0.2 373804 28304 ?        R    14:22   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_oracle_health --connect 10.17.86.101:1521/R
nagios    6690  6.0  0.2 373668 27564 ?        S    14:22   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_oracle_health --connect 10.17.86.101:1521/R
nagios    6782  5.5  0.2 373668 27564 ?        S    14:22   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_oracle_health --connect 10.17.86.101:1521/R
nagios    6869  0.0  0.0  39348  2364 ?        S    14:22   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 172.29.71.13 -t 60 -c rs_check_port -a 10.10.1.10
nagios    6972  9.5  0.1 164784 24272 ?        S    14:22   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_nwc_health --hostname 172.27.10.250 --timeo
nagios    7058  5.0  0.3 4834544 47416 ?       Sl   14:22   0:00 /usr/bin/java -cp /usr/local/nagios/libexec check_as400 -u NAGIOS -p cimb@123 -H 10.104.38.1
nagios    7145  0.0  0.0  39348  2368 ?        S    14:22   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 172.29.67.52 -t 60 -c check_logfiles -a 30  -f co
nagios    7238 18.0  0.1 164784 24132 ?        S    14:22   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_nwc_health --hostname 172.30.152.254 --time
nagios    7337  0.0  0.0 106100  1180 ?        S    14:22   0:00 sh -c /usr/local/nagios/libexec/check_mssql_health -t 60 --server 10.102.105.68 --port 1433
nagios    7341 10.0  0.1 198380 14732 ?        SL   14:22   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_mssql_health -t 60 --server 10.102.105.68 -
nagios    7462  0.0  0.0 106100  1180 ?        S    14:22   0:00 sh -c /usr/local/nagios/libexec/check_mssql_health -t 60 --server 10.17.81.118 --port 1433 -
nagios    7470 11.0  0.1 198380 14640 ?        SL   14:22   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_mssql_health -t 60 --server 10.17.81.118 --
nagios    7577  0.0  0.0  39348  2356 ?        S    14:22   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 192.168.34.38 -t 60 -c rs_check_webservice -a htt
apache    7617  5.5  0.2 455596 35388 ?        R    13:20   3:27 /usr/sbin/httpd
nagios    7690  0.0  0.0  39348  2356 ?        S    14:22   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 172.29.37.90 -t 60 -c rs_check_service -a cron
nagios    7801  0.0  0.0 106100  1184 ?        S    14:22   0:00 sh -c /usr/local/nagios/libexec/check_mssql_health -t 60 --server 10.17.86.13 --port 1433 --
nagios    7804  7.0  0.0 150484  9780 ?        R    14:22   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_mssql_health -t 60 --server 10.17.86.13 --p
nagios    7870  0.0  0.0  39348  2132 ?        S    14:22   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 172.29.67.51 -t 60 -c rs_check_webservice -a http
nagios    7946  1.0  0.0 110240  1172 pts/1    R+   14:22   0:00 ps -aux
postgres  8165  0.1  0.0 218076  6924 ?        Ss   13:20   0:07 postgres: nagiosxi nagiosxi [local] idle
nagios    8749  0.0  0.0  39204  2048 ?        S    14:21   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 10.17.118.10 -t 60 -c rs_check_service -a cron
root      9886  0.0  0.0 100368  4384 ?        Ss   13:24   0:00 sshd: nagios [priv]
postfix  10565  0.0  0.0  81360  3436 ?        S    13:20   0:00 pickup -l -t fifo -u
nagios   11841  0.0  0.0 100368  1796 ?        S    13:24   0:00 sshd: nagios@pts/0
nagios   11842  0.0  0.0 108472  1892 pts/0    Ss+  13:24   0:00 -bash
root     13737  0.0  0.0 140180  1732 ?        S    14:22   0:00 CROND
root     13739  0.0  0.0 140180  1732 ?        S    14:22   0:00 CROND
root     13740  0.0  0.0 140180  1732 ?        S    14:22   0:00 CROND
root     13741  0.0  0.0 140180  1732 ?        S    14:22   0:00 CROND
root     13742  0.0  0.0 140180  1732 ?        S    14:22   0:00 CROND
nagios   13762  0.0  0.0 106096  1148 ?        Ss   14:22   0:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/perfdataproc.php > /usr/local/nagiosxi/v
nagios   13763  0.0  0.0 106096  1144 ?        Ss   14:22   0:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/sysstat.php > /usr/local/nagiosxi/var/sy
nagios   13768  0.4  0.1 321016 23452 ?        S    14:22   0:00 /usr/bin/php -q /usr/local/nagiosxi/cron/sysstat.php
nagios   13769  0.2  0.1 321256 23384 ?        S    14:22   0:00 /usr/bin/php -q /usr/local/nagiosxi/cron/perfdataproc.php
nagios   13771  0.0  0.0 106096  1148 ?        Ss   14:22   0:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/eventman.php > /usr/local/nagiosxi/var/e
nagios   13779  0.0  0.0 106096  1144 ?        Ss   14:22   0:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/feedproc.php > /usr/local/nagiosxi/var/f
nagios   13781  0.5  0.2 328540 30612 ?        S    14:22   0:00 /usr/bin/php -q /usr/local/nagiosxi/cron/eventman.php
nagios   13783  0.0  0.0 106096  1144 ?        Ss   14:22   0:00 /bin/sh -c /usr/bin/php -q /usr/local/nagiosxi/cron/cmdsubsys.php > /usr/local/nagiosxi/var/
nagios   13784  0.2  0.1 321084 22844 ?        S    14:22   0:00 /usr/bin/php -q /usr/local/nagiosxi/cron/feedproc.php
nagios   13788  0.5  0.1 320848 23016 ?        S    14:22   0:00 /usr/bin/php -q /usr/local/nagiosxi/cron/cmdsubsys.php
postgres 13864  0.0  0.0 217728  5336 ?        Ss   14:22   0:00 postgres: nagiosxi nagiosxi [local] idle
postgres 13874  0.0  0.0 217728  5376 ?        Ss   14:22   0:00 postgres: nagiosxi nagiosxi [local] idle
postgres 13921  0.0  0.0 217728  5360 ?        Ss   14:22   0:00 postgres: nagiosxi nagiosxi [local] idle
postgres 13946  0.2  0.0 217816  6652 ?        Ss   14:22   0:00 postgres: nagiosxi nagiosxi [local] idle
postgres 14016  0.4  0.0 217780  5684 ?        Ss   14:22   0:00 postgres: nagiosxi nagiosxi [local] idle
nagios   14120  0.2  0.2 174744 25912 ?        S    13:45   0:05 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   14123  0.2  0.2 174556 25808 ?        S    13:45   0:05 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   15359  1.0  0.2 374456 30512 ?        S    14:22   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_oracle_health --connect 10.17.86.125:1521/A
apache   16281  6.2  0.3 464444 44440 ?        S    13:26   3:31 /usr/sbin/httpd
postgres 16336  0.2  0.0 217936  6916 ?        Ss   13:26   0:07 postgres: nagiosxi nagiosxi [local] idle
nagios   16537 13.4  0.0 106476  1676 ?        S    14:20   0:20 bash ./process_disk_data
apache   17698  5.1  0.2 455564 35180 ?        S    13:36   2:24 /usr/sbin/httpd
apache   17711  6.4  0.2 456032 35864 ?        S    13:26   3:37 /usr/sbin/httpd
postgres 17800  0.1  0.0 218072  6908 ?        Ss   13:26   0:05 postgres: nagiosxi nagiosxi [local] idle
postgres 17840  0.1  0.0 217936  6892 ?        Ss   13:36   0:04 postgres: nagiosxi nagiosxi [local] idle
nagios   21877  0.3  0.1 167432 20480 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21880  0.1  0.0 138184  3416 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21881  0.1  0.0 144616  8088 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21884  0.2  0.0 138172  3412 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21886  0.3  0.1 172868 23952 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21888  0.2  0.0 144608  8076 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21890  0.2  0.0 144624  8096 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21891  0.3  0.1 172880 23968 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21892  0.3  0.1 167440 20480 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21894  0.3  0.1 172856 23948 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21895  0.4  0.1 167436 20476 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21896  0.4  0.1 167428 20472 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21897  0.5  0.1 167436 20472 ?        S    14:19   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21898  0.2  0.0 144628  8096 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21899  0.3  0.1 172876 23964 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21900  0.2  0.1 167432 20476 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21902  0.3  0.1 167448 20492 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21904  0.2  0.0 144604  8076 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21905  0.2  0.0 144604  8076 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21908  0.3  0.2 174260 25356 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21909  0.3  0.1 172904 23904 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21910  0.3  0.1 167444 20480 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21914  0.1  0.0 138172  3388 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21915  0.2  0.0 144648  8112 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21916  0.2  0.0 144620  8092 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21919  0.4  0.1 172856 23956 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21920  0.3  0.1 167440 20476 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21921  0.3  0.1 172880 23968 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21922  0.2  0.0 146072  9544 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21923  0.3  0.2 174324 25416 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21924  0.1  0.0 138172  3392 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21925  0.3  0.1 167440 20488 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21926  0.3  0.1 167460 20520 ?        S    14:19   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   21995  0.2  0.2 174436 25636 ?        S    14:05   0:02 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   22005  0.2  0.2 174404 25540 ?        S    14:05   0:02 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   22006  0.2  0.1 172904 23988 ?        S    14:05   0:02 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   22008  0.2  0.1 173096 24032 ?        S    14:05   0:02 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   22011  0.3  0.2 174372 25496 ?        S    14:05   0:03 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   22012  0.3  0.2 174396 25540 ?        S    14:05   0:03 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   22013  0.4  0.2 174424 25512 ?        S    14:05   0:04 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   22014  0.3  0.2 174488 25404 ?        S    14:05   0:03 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   22016  0.3  0.2 174352 25480 ?        S    14:05   0:03 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   22025  0.2  0.2 174304 25472 ?        S    14:05   0:02 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   22026  0.2  0.2 174516 25528 ?        S    14:05   0:02 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   22033  0.2  0.0 146144  9612 ?        S    14:05   0:02 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   22043  0.2  0.1 172812 23944 ?        S    14:05   0:02 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   23153  2.8  0.2 374456 30512 ?        S    14:22   0:00 /usr/bin/perl -w /usr/local/nagios/libexec/check_oracle_health --connect 10.17.86.125:1521/A
apache   23623  4.9  0.2 455464 35200 ?        S    13:57   1:16 /usr/sbin/httpd
nagios   23720  0.0  0.0  39204  2052 ?        S    14:22   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 10.17.118.10 -t 60 -c check_memory -a 70 85  -C
postgres 23856  0.1  0.0 217936  6476 ?        Ss   13:57   0:02 postgres: nagiosxi nagiosxi [local] idle
root     24313  0.0  0.0 140180  1732 ?        S    14:00   0:00 CROND
nagios   24347  0.0  0.0 106096  1144 ?        Ss   14:00   0:00 /bin/sh -c /perfdata/scripts/process_data > /dev/null
nagios   24353  0.0  0.0 106100  1292 ?        S    14:00   0:00 /bin/bash /perfdata/scripts/process_data
nagios   24852  0.3  0.2 174308 25412 ?        S    14:10   0:02 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
apache   25375  7.2  0.2 455992 35804 ?        S    13:29   3:53 /usr/sbin/httpd
nagios   25395 14.2  0.0 106224  1436 ?        S    14:21   0:09 bash ./process_host_data
postgres 25409  0.1  0.0 218072  6904 ?        Ss   13:29   0:05 postgres: nagiosxi nagiosxi [local] idle
nagios   25812 20.4  0.5 256076 64188 ?        S    14:22   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   26222  0.2  0.2 174888 26040 ?        S    13:48   0:05 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   26230  0.2  0.2 174680 25704 ?        S    13:48   0:05 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   26232  0.2  0.2 174488 25548 ?        S    13:48   0:04 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   26234  0.2  0.2 174560 25600 ?        S    13:48   0:05 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   26244  0.2  0.2 174484 25548 ?        S    13:48   0:05 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   26257  0.2  0.2 174392 25516 ?        S    13:48   0:04 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
apache   27328  6.8  0.4 470912 51004 ?        S    13:20   4:14 /usr/sbin/httpd
postgres 27669  0.2  0.0 217936  6908 ?        Ss   13:20   0:07 postgres: nagiosxi nagiosxi [local] idle
root     28617  0.0  0.0 140180  1732 ?        S    14:20   0:00 CROND
nagios   28633  0.0  0.0 106096  1140 ?        Ss   14:20   0:00 /bin/sh -c /perfdata/scripts/process_data > /dev/null
nagios   28651  0.0  0.0 106100  1284 ?        S    14:20   0:00 /bin/bash /perfdata/scripts/process_data
nagios   29088  0.0  0.0 137628  3008 ?        S    14:22   0:00 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
root     29173  0.0  0.0 140180  1732 ?        S    13:40   0:00 CROND
nagios   29184  0.0  0.0 106096  1144 ?        Ss   13:40   0:00 /bin/sh -c /perfdata/scripts/process_data > /dev/null
nagios   29191  0.0  0.0 106100  1292 ?        S    13:40   0:00 /bin/bash /perfdata/scripts/process_data
nagios   29447  0.0  0.0  39204  2052 ?        S    14:22   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 10.17.118.11 -t 60 -c rs_check_port -a localhost
nagios   29932 13.7  0.0 106588  1808 ?        S    14:15   0:57 bash ./process_cpu_data
nagios   29938 29.0  0.5 256320 64440 ?        S    14:22   0:01 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   30009  0.0  0.0 106100  1192 ?        S    14:22   0:00 /bin/sh /usr/local/nagios/libexec/check_as400 -u NAGIOS -p vango4ls -H 10.17.18.208 -v RS_DI
nagios   30041  3.2  0.5 4834544 72516 ?       Sl   14:22   0:00 /usr/bin/java -cp /usr/local/nagios/libexec check_as400 -u NAGIOS -p cimb@123 -u NAGIOS -p v
nagios   30099  0.0  0.0  39204  2048 ?        S    14:22   0:00 /usr/local/nagios/libexec/check_nrpe -u -H 10.17.118.11 -t 60 -c rs_check_service -a cron
nagios   30618  0.0  0.0 106096  1152 ?        S    14:22   0:00 sh -c /usr/bin/iostat -c 5 2 | tail --lines=2 | head --lines=1 | awk '{ print $1,$2,$3,$4,$5
nagios   30624  0.0  0.0 100968   820 ?        S    14:22   0:00 /usr/bin/iostat -c 5 2
nagios   30626  0.0  0.0 100944   652 ?        S    14:22   0:00 tail --lines=2
nagios   30627  0.0  0.0 100920   632 ?        S    14:22   0:00 head --lines=1
nagios   30628  0.0  0.0 105952   900 ?        S    14:22   0:00 awk { print $1,$2,$3,$4,$5,$6 }
nagios   30932  0.2  0.2 175124 26248 ?        S    13:20   0:09 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   30936  0.2  0.2 175044 26212 ?        S    13:20   0:09 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   30941  0.2  0.2 174700 25904 ?        S    13:20   0:09 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   30966  0.2  0.2 174820 25776 ?        S    13:20   0:08 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   30973  0.2  0.2 175072 26264 ?        S    13:20   0:09 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
nagios   30978  0.2  0.2 175024 26108 ?        S    13:20   0:09 /usr/bin/mod_gearman_worker -d --config=/etc/mod_gearman/mod_gearman_worker.conf --pidfile=/
apache   31369  6.9  0.3 461068 40556 ?        S    13:20   4:17 /usr/sbin/httpd
postgres 31450  0.1  0.0 217936  6908 ?        Ss   13:20   0:07 postgres: nagiosxi nagiosxi [local] idle
[nagios@nagiosprodxi1 libexec]$

Please advise if the following will help our performance

use_large_installation_tweaks=1 (already in place)
enable_environment_macros=0
free_child_process_memory=0
child_processes_fork_twice=0
check_result_reaper_frequency=3
max_check_result_reaper_time=10

Thanks