15 lines
352 B
Plaintext
15 lines
352 B
Plaintext
object CheckCommand "snmp-digitemp" {
|
|
import "plugin-check-command"
|
|
command = [ PluginDir + "/check_by_snmp.pl" ]
|
|
arguments = {
|
|
"-H" = "$digitemp_address$"
|
|
"-E" = "digitemp"
|
|
"-C" = "public"
|
|
"-t" = "$digitemp_timeout$"
|
|
}
|
|
vars.digitemp_address = "$address$"
|
|
#vars.digitemp_device = "digitemp"
|
|
vars.digitemp_timeout = "5"
|
|
}
|
|
|