Search found 8201 matches

by abrist
Tue Jul 07, 2015 9:23 am
Forum: Nagios XI
Topic: Change default RRD step value
Replies: 5
Views: 4853

Re: Change default RRD step value

You are looking for the rra step value. New rrds are created by the process_perfdata.pl script through npcd. Edit: /usr/local/nagios/etc/pnp/process_perfdata.cfg Change: RRA_STEP = 60 To: RRA_STEP = 300 Save out. Unfortunately, you will need to delete all rrds in order to use the rra step value as t...
by abrist
Thu Jul 02, 2015 2:32 pm
Forum: Open Source Nagios Projects
Topic: snmp dont work with nagios "Cannot find module"
Replies: 19
Views: 18405

Re: snmp dont work with nagios "Cannot find module"

You can run the following to find out what the default mib path for the net-snmp is:

Code: Select all

net-snmp-config --default-mibdirs
Your version of snmp was probably configured with a different default '--datadir=' than is assumed. What is the output of:

Code: Select all

net-snmp-config --configure-options
by abrist
Thu Jul 02, 2015 12:59 pm
Forum: Open Source Nagios Projects
Topic: Nagios monitoring problem
Replies: 12
Views: 6991

Re: Nagios monitoring problem

Can you now submit any commands from the UI? (basically, we are checking to see it selinux was getting in the way of stating the command pipe)
by abrist
Thu Jul 02, 2015 12:58 pm
Forum: Nagios XI
Topic: Duration resets for all Services with Apply Config
Replies: 32
Views: 2982

Re: Duration resets for all Services with Apply Config

Lets check a few more directives:

Code: Select all

grep "state\|retention\|retain" /usr/local/nagios/etc/nagios.cfg
by abrist
Thu Jul 02, 2015 12:46 pm
Forum: Nagios XI
Topic: Duration resets for all Services with Apply Config
Replies: 32
Views: 2982

Re: Duration resets for all Services with Apply Config

Is state retention enabled?

Code: Select all

grep retain_state /usr/local/nagios/etc/nagios.cfg
by abrist
Thu Jul 02, 2015 12:44 pm
Forum: Open Source Nagios Projects
Topic: Nagios monitoring problem
Replies: 12
Views: 6991

Re: Nagios monitoring problem

First, disable selinux for testing reasons:

Code: Select all

setenforce 0
getenforce
Then, restart nagios:

Code: Select all

service nagios restart
by abrist
Thu Jul 02, 2015 9:57 am
Forum: Nagios XI
Topic: INSTALLATION ERROR
Replies: 41
Views: 9473

Re: INSTALLATION ERROR

Hmmm, I don't see those errors when I curl the xml urls. :

Code: Select all

curl http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/repodata/repomd.xml
Does your proxy require authentication?
Did you configure yum to use your proxy:

Code: Select all

grep proxy /etc/yum.conf
by abrist
Thu Jul 02, 2015 9:52 am
Forum: Nagios XI
Topic: Custom SNMP check
Replies: 45
Views: 4210

Re: Custom SNMP check

Are there only a few similar services defected (like all ping/host graphs), or does it seem a bit more random?
by abrist
Thu Jul 02, 2015 9:48 am
Forum: Open Source Nagios Projects
Topic: Nagvis " You are not authenticated"
Replies: 5
Views: 3443

Re: Nagvis " You are not authenticated"

What version of core and nagvis are you running?
Can you post the apache vhost config for nagvis?
by abrist
Thu Jul 02, 2015 9:46 am
Forum: Nagios XI
Topic: Massive CPU Spikes for 15 min affecting performance
Replies: 1
Views: 398

Re: Massive CPU Spikes for 15 min affecting performance

You have a large number of handle_nagioscore_event scripts running: /usr/bin/php /usr/local/nagiosxi/scripts/handle_nagioscore_event.php --handler-type=service --host=xxx --service=LANDATA I assume there are plenty of these at all times: ps -aef | grep handle_nagioscore_event | wc -l And they are us...