Search found 19 matches
- Wed Jun 25, 2014 8:19 am
- Forum: Open Source Nagios Projects
- Topic: Monitoring a SQL Cluster
- Replies: 7
- Views: 3797
Re: Monitoring a SQL Cluster
The way we do it is to monitor both hosts individually and the cluster itself as a third host. It is not necessary to set NSClient++ as a clustered service this way. The standard set of service checks are applied to the individual hosts, plus the SQL Server checks. The cluster virtual host gets chec...
- Fri May 09, 2014 7:55 am
- Forum: Open Source Nagios Projects
- Topic: Monitoring large memory hosts
- Replies: 3
- Views: 1663
Re: Monitoring large memory hosts
Thank you! I will check that out.
- Thu May 08, 2014 7:38 am
- Forum: Open Source Nagios Projects
- Topic: Monitoring large memory hosts
- Replies: 3
- Views: 1663
Monitoring large memory hosts
Does anyone have suggestions for monitoring hosts with large amounts of memory? I mean hundreds of GB here. We use NSClient++, but mostly the check_nt style checks unless we need something beyond that. The check_nt MEMUSE check works, but takes its warning and critical thresholds as integer percents...
- Mon Feb 17, 2014 9:33 am
- Forum: Open Source Nagios Projects
- Topic: Monitoring Exchange 2013 Queue SNMP?
- Replies: 6
- Views: 7541
Re: Monitoring Exchange 2013 Queue SNMP?
Exchange has a number of queues, so you'll have to determine which ones you want to monitor for yourself. You can monitor Exchange queues using Windows performance counters. We are using Exchange 2010, so the names may have changed, but these are the queues we monitor: Aggregate Delivery Queue Activ...
- Thu Dec 19, 2013 11:09 am
- Forum: Open Source Nagios Projects
- Topic: Setup Switchvox OID's in serivces
- Replies: 32
- Views: 12927
Re: Setup Switchvox OID's in serivces
I have a MIB for the OID's I want to use, how do I get Nagios to interpret that file. I used snmpwalk to test the OID's and I get valid data back while in terminal, now I need to setup my service in Nagios to read this OID and send out alerts if a threshold is passed. If you have a .mib file, insta...
- Wed Nov 20, 2013 4:38 pm
- Forum: Open Source Nagios Projects
- Topic: Is it possible to have 2 notifications template
- Replies: 35
- Views: 11536
Re: Is it possible to have 2 notifications template
I think you're on the right track. You have to pass the Nagios macros as parameters to the script. So, I think you'll end up with something along the lines of: define command{ command_name notify-service-by-email-test command_line /usr/local/nagios/libexec/recovery.sh $NOTIFICATIONTYPE$ $SERVICEDESC...
- Tue Nov 19, 2013 4:51 pm
- Forum: Open Source Nagios Projects
- Topic: Is it possible to have 2 notifications template
- Replies: 35
- Views: 11536
Re: Is it possible to have 2 notifications template
I haven't completely understand this one. should i have only one templates without/with ""r"" ? and then add above command to command.cfg file. The contact needs to have the w, c, and r. The idea is that Nagios is satisfied the contact will receive everything. Then the notificat...
- Tue Nov 19, 2013 9:34 am
- Forum: Open Source Nagios Projects
- Topic: Is it possible to have 2 notifications template
- Replies: 35
- Views: 11536
Re: Is it possible to have 2 notifications template
I had another idea which (if it works) is certainly easier and better than changing the source code. It might be possible to use a custom notification command instead. Something along these lines: define command { command_name recovery_only command_line if [ "$NOTIFICATIONTYPE$" -eq "...
- Mon Nov 18, 2013 1:41 pm
- Forum: Open Source Nagios Projects
- Topic: Is it possible to have 2 notifications template
- Replies: 35
- Views: 11536
Re: Is it possible to have 2 notifications template
I should word my post better! This is the line I meant you should remove, if you try that route: if(!((svc->notified_on_unknown == TRUE && cntct->notify_on_service_unknown == TRUE) || (svc->notified_on_warning == TRUE && cntct->notify_on_service_warning == TRUE) || (svc->notified_on_...
- Mon Nov 18, 2013 11:06 am
- Forum: Open Source Nagios Projects
- Topic: Is it possible to have 2 notifications template
- Replies: 35
- Views: 11536
Re: Is it possible to have 2 notifications template
I think Nagios isn't set up to be able to do what you want to do. I don't speak the language, but I looked at the source in notifications.c anyway. This bit looked interesting. if(svc->current_state == STATE_OK) { if(cntct->notify_on_service_recovery == FALSE) { log_debug_info(DEBUGL_NOTIFICATIONS, ...