Search found 3722 matches

by mcapra
Thu Mar 02, 2017 4:25 pm
Forum: Open Source Nagios Projects
Topic: What is the diff between state changes last/hard
Replies: 6
Views: 2598

Re: What is the diff between state changes last/hard

Ah, the _usec fields are included for additional granularity. They represent the microseconds of a corresponding _time field. Where as a traditional unix timestamp only goes down to the nearest second, it might be useful in some situations to have the microsecond as well. Particularly in large envir...
by mcapra
Thu Mar 02, 2017 4:12 pm
Forum: Nagios XI
Topic: Reactor Integration not Showing
Replies: 2
Views: 29

Re: Reactor Integration not Showing

In addition to those things, can you also share the output of the following command executed from the CLI of your Nagios XI machine: php -r "error_reporting(E_ALL);ini_set('display_errors', TRUE);ini_set('display_startup_errors', TRUE);include('/usr/local/nagiosxi/html/includes/components/react...
by mcapra
Thu Mar 02, 2017 3:48 pm
Forum: Nagios XI
Topic: Error in AWS EC2 Uubuntu Monitoring
Replies: 84
Views: 20538

Re: Error in AWS EC2 Uubuntu Monitoring

From the remote machine running NRPE (54.76.125.226), can you run the following commands: sed -i 's/debug=0/debug=1/g' /usr/local/nagios/etc/nrpe.cfg service nrpe restart That should enable more verbose debugging in NRPE. Then, from the Nagios XI machine, can you run: /usr/local/nagios/libexec/check...
by mcapra
Thu Mar 02, 2017 3:40 pm
Forum: Open Source Nagios Projects
Topic: NRPE: Unable to read output
Replies: 22
Views: 9465

Re: NRPE: Unable to read output

From the Nagios Core machine, can you try executing this again:

Code: Select all

/usr/local/nagios/libexec/check_nrpe -H 168.162.97.143 -c check_jmxmemory
Then, shortly after on 168.162.97.143, share the output of:

Code: Select all

tail -n 100 /var/log/messages | grep nrpe
by mcapra
Thu Mar 02, 2017 3:26 pm
Forum: Nagios XI
Topic: NRDP Not Showing Unconfigured Objects
Replies: 21
Views: 10493

Re: NRDP Not Showing Unconfigured Objects

I think it'd be best to start with a fresh, minimal installation of RHEL using the latest version of Nagios XI then get things working from there. Troubleshooting without knowing the specific hardening steps taken makes things difficult. If you can get the passive checks coming in without the harden...
by mcapra
Thu Mar 02, 2017 2:50 pm
Forum: Nagios XI
Topic: Monitoring Application Pool IIS
Replies: 5
Views: 2357

Re: Monitoring Application Pool IIS

The documentation provided by @WillemDH is fairly comprehensive:
https://outsideit.net/monitoring-iis-application-pools/

Typically, $ARG1$ will contain -A followed by the application pool's name:

Code: Select all

-A <Name-Of-Application-Pool>
by mcapra
Thu Mar 02, 2017 2:45 pm
Forum: Open Source Nagios Projects
Topic: CheckEventLog Genrated Time displayed Wrongly
Replies: 3
Views: 1398

Re: CheckEventLog Genrated Time displayed Wrongly

descriptions actually appears to be deprecated as of 0.4.2: http://docs.nsclient.org/0.4.2/reference/CheckEventLog.html#CheckEventLog.checkeventlog.descriptions That aside, i'm not seeing anything in the NSClient++ documentation that clearly spells out how to change the date formatting. The documen...
by mcapra
Thu Mar 02, 2017 2:10 pm
Forum: Nagios XI
Topic: Nagios state history column details
Replies: 1
Views: 433

Re: Nagios state history column details

Here's the full documentation on the NDOUtils database model:
https://assets.nagios.com/downloads/nag ... _Model.pdf

Page 34/35 contains descriptors for each field in the statehistory table. Let us know if you have additional questions regarding the fields!
by mcapra
Thu Mar 02, 2017 2:06 pm
Forum: Open Source Nagios Projects
Topic: Check RAID over SNMP
Replies: 1
Views: 770

Re: Check RAID over SNMP

You might give this one a try: https://exchange.nagios.org/directory/Plugins/Hardware/Storage-Systems/RAID-Controllers/check_snmp_raid--2F-check_sasraid_megaraid/details We don't have specific documentation that addresses RAID controllers in particular though. Here's some other options on the exchan...
by mcapra
Thu Mar 02, 2017 2:02 pm
Forum: Open Source Nagios Projects
Topic: nrpe check_disk help
Replies: 19
Views: 16031

Re: nrpe check_disk help

From the remote machine running NRPE, can you share the outputs of the following: ip addr service xinetd restart service nrpe restart ps aux cat /etc/xinetd.d/nrpe cat /usr/local/nagios/etc/nrpe.cfg | grep command After all of that, can you also share the output of the following command executed fro...