# check_nt
define command {
  command_name check_nt_cpuload
  command_line $USER1$/check_nt -H $HOSTADDRESS$ -v CPULOAD -l 1,98,99,5,90,95,15,80,90
}
define command {
  command_name check_nt_memuse
  command_line $USER1$/check_nt -H $HOSTADDRESS$ -v MEMUSE -w 80 -c 90
}
define command {
  command_name check_nt_disk_space
  command_line $USER1$/check_nt -H $HOSTADDRESS$ -v USEDDISKSPACE -l $ARG1$ -w 80 -c 90
}
nt_cpuload="
define service {
  use $service_templ
  host_name $1
  service_description nt_cpuload
  contact_groups $2
  servicegroups $2
  check_command check_nt_cpuload
}"
nt_memuse="
define service {
  use $service_templ
  host_name $1
  service_description nt_memuse
  contact_groups $2
  servicegroups $2
  check_command check_nt_memuse
}"
nt_disk_c="define service {
  use $service_templ
  host_name $1
  service_description nt_disk_space_c
  contact_groups $2
  servicegroups $2
  check_command check_nt_disk_space!c
}"
nt_disk_d="define service {
  use $service_templ
  host_name $1
  service_description nt_disk_space_d
  contact_groups $2
  servicegroups $2
  check_command check_nt_disk_space!d
}"
