Search found 4 matches

by pndmedia
Sun Dec 14, 2014 6:38 pm
Forum: Open Source Nagios Projects
Topic: Nagios is checking one service twice?
Replies: 9
Views: 3334

Re: Nagios is checking one service twice?

Box293 wrote:
tmcdonald wrote:Can you show us the check_netPRG command definition

I have put the check_netPRG command above, it is not a custom plugin, it just uses a snmp walk to get an Integer value which tells me if there is audio there or not.

This is still a problem and any help would be much appreciated.

Cheers
Pete
by pndmedia
Mon Dec 01, 2014 8:00 pm
Forum: Open Source Nagios Projects
Topic: Nagios is checking one service twice?
Replies: 9
Views: 3334

Re: Nagios is checking one service twice?

Thanks for the reply, it just uses snmpwalk, /usr/bin/snmpwalk -v 1 -c public -On IP-ADDRESS .1.3.6.1.4.1.38558.2.1.1.1.1.3.6 | grep "INTEGER: 2" >>/dev/null if [ $? -ne 0 ]; then echo "Audio OK" RETVAL=0 else echo "Audio Fail" RETVAL=2 fi exit $RETVAL
by pndmedia
Wed Nov 26, 2014 8:16 pm
Forum: Open Source Nagios Projects
Topic: Nagios is checking one service twice?
Replies: 9
Views: 3334

Re: Nagios is checking one service twice?

Not sure if my previous post has disappeared, or if its just waiting to be moderated because I am a new member, but just in case I shall try again. Thanks for the reply all, Yes you are correct, nothing has changed as a result of direct user action, I am the only one with access to this server and h...
by pndmedia
Tue Nov 25, 2014 7:12 pm
Forum: Open Source Nagios Projects
Topic: Nagios is checking one service twice?
Replies: 9
Views: 3334

Nagios is checking one service twice?

Hi all, hoping someone can help. For one of my services, Nagios seems to be checking twice every minute, even though it is set to check interval 1 and retry 1 I have a service that goes down 4 times an hour, for 4 minutes (this is meant to happen) So I have set Nagios to check every minute, retry ev...