Search found 3722 matches

by mcapra
Tue Feb 21, 2017 11:50 am
Forum: Open Source Nagios Projects
Topic: my new nagios installation can not monitor windows servers
Replies: 3
Views: 1571

Re: my new nagios installation can not monitor windows serve

Can you share the output of the following command executed from the CLI of your Nagios Core machine (using the host's logical address): ip addr /usr/local/nagios/libexec/check_nrpe -H 10.x.x.x Feel free to PM the results if they contain sensitive information. I'd like to be sure the Nagios Core mach...
by mcapra
Tue Feb 21, 2017 11:42 am
Forum: Open Source Nagios Projects
Topic: log time stamps
Replies: 1
Views: 1117

Re: log time stamps

Not really beyond parsing the logs. The unix timestamp is used by several processes on the back-end of Nagios Core, so altering the state of the log file to use an ISO 8601 timestamp or similar formats would need to be accounted for in several other components of Nagios Core, not just the log file.
by mcapra
Tue Feb 21, 2017 11:39 am
Forum: Open Source Nagios Projects
Topic: email configuration
Replies: 4
Views: 1624

Re: email configuration

Have you verified your host/service definitions include the appropriate settings for the contacts/contact_groups directive? Like so:

Code: Select all

define host {
...
contacts	nagiosadmin,contact1,contact2
contact_groups	my_big_contact_group
...
}    	
by mcapra
Tue Feb 21, 2017 11:34 am
Forum: Nagios XI
Topic: Custom alert logic
Replies: 3
Views: 57

Re: Custom alert logic

This is a limitation within how Nagios Core dispatches notifications. More info about how that works on the back-end: https://assets.nagios.com/downloads/nagioscore/docs/nagioscore/4/en/notifications.html The decision to send out notifications is made in the service check and host check logic. The c...
by mcapra
Tue Feb 21, 2017 11:24 am
Forum: Nagios XI
Topic: Setting Downtime with the REST API
Replies: 1
Views: 129

Re: Setting Downtime with the REST API

Not currently. You can refer to the "Help" section of your Nagios XI GUI for more information about the back-end API. You could use the external commands file to schedule downtime from the CLI though. More information: https://old.nagios.org/developerinfo/externalcommands/commandlist.php T...
by mcapra
Tue Feb 21, 2017 11:21 am
Forum: Nagios XI
Topic: Question regarding memory usage on Solaris servers
Replies: 3
Views: 75

Re: Question regarding memory usage on Solaris servers

Just so we're on the same page, what agent are you using to retrieve the system metrics for this machine? NRPE, SNMP, NCPA, etc.

Can you show me the command definition being leveraged to check the machine's available memory?
by mcapra
Tue Feb 21, 2017 11:04 am
Forum: Nagios XI
Topic: Monitoring Engine Status - Turn off Notifications
Replies: 8
Views: 384

Re: Monitoring Engine Status - Turn off Notifications

Your configuration isn't retaining the program state:

Code: Select all

use_retained_program_state=0
Try switching that to 1 and see if it resolves the issue.
by mcapra
Tue Feb 21, 2017 10:33 am
Forum: Nagios XI
Topic: Monitoring Engine Status - Turn off Notifications
Replies: 8
Views: 384

Re: Monitoring Engine Status - Turn off Notifications

Can you share the full contents of your /usr/local/nagios/etc/nagios.cfg file? There may be a setting that's preventing retention.dat from being leveraged and resetting the monitoring engine' settings to default each time.
by mcapra
Mon Feb 20, 2017 4:35 pm
Forum: Nagios XI
Topic: HTTP ERROR 500
Replies: 18
Views: 24319

Re: HTTP ERROR 500

It looks as if Nagios Log Server as well as Nagios Network Analyzer have been installed on this machine: CORP root@nagios01:/var/log/httpd$ ls -al /var/www/html total 24 drwxr-xr-x. 5 root root 4096 Sep 8 12:53 . drwxr-xr-x. 7 root root 4096 Jan 5 21:57 .. -rwxr-xr-x. 1 root root 3038 Sep 19 2015 in...
by mcapra
Mon Feb 20, 2017 4:09 pm
Forum: Nagios XI
Topic: Flap and Retain status issues with the service
Replies: 23
Views: 857

Re: Flap and Retain status issues with the service

I would need to see the full call trace from the RC server to determine if it's a "false negative" or not. I know check_selenium by itself will throw a "CRITICAL" if it finds the word "ERROR" anywhere in the test case's output, though I believe the RC server will re-try...