Setting up a MAX on snmp disk percentace
Posted: Thu Feb 09, 2017 12:09 pm
Hello, I am a newbie
setting up my nagios core for the first time
So far so good
So i have created a command
This works fine with
The one part where i can not seem to connect the dots is how do i set this up to fail when a particular MAX Percentage is reached
Thanks
setting up my nagios core for the first time
So far so good
So i have created a command
Code: Select all
define command{
command_name snmp_Disk1_Usage
command_line $USER1$/check_snmp -o .1.3.6.1.4.1.2021.9.1.8.1 -H $HOSTADDRESS$ $ARG1$
}Code: Select all
define service{
use generic-service
host_name www2.myhost.com
service_description Disk 1 Usage Percentage
check_command snmp_Disk1_UsedPercentage!-C my_monitor
}
Thanks