Re: [Nagios-users] Custom Objects

2006-07-13 Thread Chet Luther
nity public } The whole config gets serialized into a Perl cache whenever Nagios is reloaded and all of my scripts (notification/service checks) have access to this additional data. If you're comfortable with Perl and interested, I can send you the code.

Re: [Nagios-users] Performance Problem on Nagios 2.4

2006-07-07 Thread Chet Luther
o you.) define command{ command_namecheck-host-alive command_line$USER1$/check_fping -H $HOSTADDRESS$ -n 1 -c 5000.0,100% } define host{ namegeneric-host check_command check-host-alive max_check_attempts3 } -- Chet Luther [EM

Re: [Nagios-users] A question about performance

2006-07-07 Thread Chet Luther
upposed to have an interval of less than an hour. Normally this number represents your passive service checks. Check execution time is the duration of the plugin runtime. Latency is how long after the scheduled check time that the check started running. Latency is the critical number to keep low

Re: [Nagios-users] Really dumb question - how do folks distinguish unreachable from over threshold ?

2006-07-06 Thread Chet Luther
s notifications. You could potentially use something like http://oss.oetiker.ch/smokeping/";>SmokePing for the service check if you were interested in fine-grained latency/packet loss information. -- Chet Luther [EMAIL PROTECTED] Using Tomcat but need to do more? Need to support web

Re: [Nagios-users] What did we recover from?

2006-02-04 Thread Chet Luther
my notification plugin that handles issues like this at http://chet.crashed.net/notify.pl.txt. You can probably find some ideas that you can use in there. -- Chet Luther [EMAIL PROTECTED] --- This SF.net email is sponsored by: Splunk Inc.

Re: [Nagios-users] Acknowledge Scripts

2005-12-09 Thread Chet Luther
t this in a different List, > please advise which one and I'll post it there. > Thanks in advance. I'd make sure that you have left the "host_unreachable_sound=" in your cgi.cfg commented out. I'm looking at the 2.0b4 code that I run, and

Re: [Nagios-users] contactgroup{ }, and contactgroups # bug?

2005-12-09 Thread Chet Luther
On 12/9/05, Chet Luther <[EMAIL PROTECTED]> wrote: > This is somewhere between a missing feature and a bug, but it is quite > inconsistent. Here's a quick patch to fix it. It is applied against > the current CVS tree. > > Sorry about that, gmail butchered the form

Re: [Nagios-users] contactgroup{ }, and contactgroups # bug?

2005-12-09 Thread Chet Luther
ps=strdup(template_contact->contactgroups); if(this_contact->email==NULL && template_contact->email!=NULL) this_contact->email=strdup(template_contact->email); if(this_contact->pager==NULL && template_contact->pager!=NULL) -- Chet Lu