Search found 431 matches

by tacolover101
Fri Jan 10, 2020 2:41 pm
Forum: Nagios XI
Topic: used/free ips per scope on the DHCP Server
Replies: 37
Views: 3531

Re: used/free ips per scope on the DHCP Server

hi gray, 1. it sounds like this is working as expected then. $ARG1$ on the windows side is being passed 192.9.3.0 (if it should not be this, then you'll want to put it into a variable in your defined check command, or the host command being utilized) 2 & 4. for perf data, and checking multiple, ...
by tacolover101
Fri Jan 10, 2020 2:27 pm
Forum: Nagios XI
Topic: How to convert Json file back to rrd.
Replies: 2
Views: 519

Re: How to convert Json file back to rrd.

how do you normally plot data into the rrd with your current process?

you should be able to pull the data in json, utilize the key-pair values, and then print it into rrdtool to update the rrd.

jq is a great tool for parsing out json - https://stedolan.github.io/jq/
by tacolover101
Fri Jan 10, 2020 2:18 pm
Forum: Nagios XI
Topic: PHP errors /var/log/httpd/ssl_error_log
Replies: 2
Views: 542

Re: PHP errors /var/log/httpd/ssl_error_log

are these errors causing any real issues? it was suggested in the past to disable the php error notices by @benjaminsmith: You can safely disable php notices as they are advisory messages by disabling them in the /etc/php.ini file. // Report all errors except E_NOTICE error_reporting(E_ALL & ~E_...
by tacolover101
Fri Jan 10, 2020 2:16 pm
Forum: Nagios XI
Topic: Service checks via rrd return zero values cluster disks
Replies: 2
Views: 475

Re: Service checks via rrd return zero values cluster disks

i believe this is expected, since the clustered disk isn't mounted. now, to fix the perf data, you could write a wrapper on either the windows side in powershell, or the bash side on nagios. 1. if on the windows side, write a powershell script to check if it's mounted, if so, then run the normal com...
by tacolover101
Fri Jan 10, 2020 2:11 pm
Forum: Nagios XI
Topic: Upgrade failure from 5.4.11 to 5.6.9
Replies: 8
Views: 845

Re: Upgrade failure from 5.4.11 to 5.6.9

check out this post by @lmiltchev to manually update the repo, it should solve your problem:
https://support.nagios.com/forum/viewto ... 48#p248963
by tacolover101
Fri Jan 10, 2020 2:09 pm
Forum: Open Source Nagios Projects
Topic: Service Availability Report seems not accurate for my servic
Replies: 15
Views: 5098

Re: Service Availability Report seems not accurate for my se

can you please post your host config for an0vm020 and service config for 'Message exchanged' from the /usr/local/nagios/var/objects.cache file? a few things i'm noticing: - the host is in maintenance mode at times - the checks could have dependency - pending how often these checks run (which looks t...
by tacolover101
Fri Jan 10, 2020 1:55 pm
Forum: Open Source Nagios Projects
Topic: Distinguish critical alerts and warning with colors
Replies: 4
Views: 2134

Re: Distinguish critical alerts and warning with colors

yes, but it would require you to set it up. there's a bit of work needed for this. i can provide you a skeleton to use to build it out. 1. setup a new host notification command to tell nagios to use your custom command (look at notify-host-by-email for reference) 2. rewrite the command to evaluate $...
by tacolover101
Fri Jan 10, 2020 1:38 pm
Forum: Open Source Nagios Projects
Topic: In Nagios GUI getting Critical error for HANA DB status
Replies: 14
Views: 5308

Re: In Nagios GUI getting Critical error for HANA DB status

[root@nagioshost ~]# /usr/local/nagios/libexec/check_nrpe -H localhost -c check_hdbnameserver.py UNKNOWN - is .We can not identify process status [root@nagioshost ~]# can you please take nrpe out of the equation, and run the check_hdbnameserver.py script with the needed parameters? then, let us kno...
by tacolover101
Fri Jan 10, 2020 1:37 pm
Forum: Open Source Nagios Projects
Topic: return code of 139 is out bounds
Replies: 2
Views: 1692

Re: return code of 139 is out bounds

it looks like the plugin is crashing for some reason. a couple things: 1. are you noticing any logs on the client side when this runs for E drive? 2. have you restarted the nsclient agent after adding additional drives? 3. what version of check_nt are you running? it may be worth upgrading - see thi...
by tacolover101
Fri Jan 10, 2020 1:25 pm
Forum: Nagios XI
Topic: How to tell if a RamDisk is being used as expected
Replies: 4
Views: 493

Re: How to tell if a RamDisk is being used as expected

yes, it is all pending how much files are in the folders @Box293 mentioned. you could move mrtg files - a better question is, do you need to. moving files to ramdisk will help by improving performance. typically, files that are accessed a lot with r/w make good candidates as the IO performance will ...