Check Cisco Catalyst - plugin help
Posted: Wed Apr 06, 2016 1:51 pm
Looking for some assistance with this plugin: https://github.com/ranl/monitor-utils/b ... k-cisco.pl
I'm trying to set up some checks using it and am not sure how to set it up
Anyone using this successfully that may be able to give me an insight on what parameters to use to monitor things like CPU, Memory, Fan status, temperature, etc etc?
what am i missing Syntax error should be be check_snmp then use check_cisco or just just check_cisco
i keep getting syntax error
Thanks a ton!
here is my config file
here is my Define Host
here is my define Hostgroup
here is my define servce
# Monitor uptime via SNMP
# Monitor Port 1 status via SNMP
Her is my command.cfg
I'm trying to set up some checks using it and am not sure how to set it up
Anyone using this successfully that may be able to give me an insight on what parameters to use to monitor things like CPU, Memory, Fan status, temperature, etc etc?
what am i missing Syntax error should be be check_snmp then use check_cisco or just just check_cisco
i keep getting syntax error
Thanks a ton!
here is my config file
here is my Define Host
Code: Select all
define host{
use generic-switch ; Inherit default values from a template
host_name linksys-srw224p ; The name we're giving to this switch
alias Linksys SRW224P Switch ; A longer name associated with the switch
address XXX.XXX.XXX.XXX ; IP address of the switch
hostgroups switches ; Host groups this switch is associated with
}here is my define Hostgroup
Code: Select all
define hostgroup{
hostgroup_name switches ; The name of the hostgroup
alias Network Switches ; Long name of the group
}# Monitor uptime via SNMP
Code: Select all
define service{
use generic-service ; Inherit values from a template
host_name linksys-srw224p
service_description Uptime
check_command check_snmp!-C public -o sysUpTime.0
}# Monitor Port 1 status via SNMP
Code: Select all
define service{
use generic-service ; Inherit values from a template
host_name linksys-srw224p
service_description Port 1 Link Status
check_command check_cisco! -H XXX.XXX.XXX.XXX -C public -t temp -w 50 -c 70
}Code: Select all
# 'check_cisco' command definition
define command{
command_name check_cisco
command_line $USER1$/check_cisco -H $HOSTADDRESS$ $USER7$ -n $ARG1$ $ARG2$
}