commands.cfg 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. # We use "$USER3" as user macro for path to MyMonPlugins
  2. ### check_apaches.py
  3. # check_command check_apaches!40!70
  4. define command {
  5. command_name check_apaches
  6. command_line $USER3$/check_apaches.py -H $HOSTADDRESS$ -w $ARG1$ -c $ARG3$
  7. }
  8. # check_command check_apaches_full!https!webserver!443!/hidden-status!user:password!40!70
  9. define command {
  10. command_name check_apaches_full
  11. command_line $USER3$/check_apaches.py -P $ARG1$ -H $ARG2$ -p $ARG3$ -u $ARG4$ -a $ARG5$ -w $ARG6$ -c $ARG7$
  12. }
  13. ### check_collectd.py (WIP!)
  14. # check_command check_collectd!load/load!2!5
  15. ## $USER17$ contains the path to collectd's unixsock (e.g. "/var/run/collectd-unixsock")
  16. define command {
  17. command_name check_collectd
  18. command_line $USER3$/check_collectd.py -S $USER17$ -H $HOSTNAME$ -V $ARG1$ -w $ARG2$ -c $ARG3$
  19. # command_line $USER3$/check_collectd.py -S $USER17$ -H $HOSTALIAS$ -V $ARG1$ -w $ARG2$ -c $ARG3$
  20. }
  21. # Use "__collectd_name" in host definition if collectd's hostname differs from object host name
  22. define command {
  23. command_name check_collectd
  24. command_line $USER3$/check_collectd.py -S $USER17$ -H $_HOST_COLLECTD_NAME$ -V $ARG1$ -w $ARG2$ -c $ARG3$
  25. }
  26. ### check_cups.py
  27. # check_command check_cups
  28. define command {
  29. command_name check_cups
  30. command_line $USER3$/check_cups.py
  31. }
  32. # check_command check_cups_jobs
  33. define command {
  34. command_name check_cups_jobs
  35. command_line $USER3$/check_cups.py --check-jobs
  36. }
  37. # check_command check_cups_printers
  38. define command {
  39. command_name check_cups_printers
  40. command_line $USER3$/check_cups.py --check-printers
  41. }
  42. ### check_iface-dns.py
  43. # check_command check_iface-dns!ppp0!your-name.dyndns.org,other-name.homeip.net
  44. define command {
  45. command_name check_iface-dns
  46. command_line $USER3$/check_iface-dns.py -i $ARG1$ -d $ARG2$
  47. }
  48. ### check_livestatus_latency.py
  49. # check_command check_livestatus_latency
  50. ## $USER18$ contains the path to your livestatus socket
  51. define command {
  52. command_name check_livestatus_latency
  53. command_line $USER3$/check_livestatus_latency.py
  54. # command_line $USER3$/check_livestatus_latency.py -S $USER18$
  55. }
  56. # check_command check_livestatus_latency!10!20
  57. define command {
  58. command_name check_livestatus_latency
  59. command_line $USER3$/check_livestatus_latency.py -w $ARG1$ -c $ARG2$
  60. }
  61. ### check_naf.py
  62. # check_command check_naf!global cpu disk disk,spare nvram version
  63. # check_command check_naf!vol_data+vol_snap+vol_inode+vol_files,/vol/vol0/+/vol/vol1/,50%,75%
  64. define command {
  65. command_name check_naf
  66. command_line $USER3$/check_naf.py -H $HOSTADDRESS$ -P2 $ARG1$
  67. }
  68. ### check_nagiostats.py
  69. # check_command check_nagiostats!AVGACTSVCLAT,AVGACTSVCEXT,AVGACTHSTLAT,AVGACTHSTEXT!1!2
  70. # check_command check_nagiostats!AVGACTSVCLAT,AVGACTSVCEXT,AVGACTHSTLAT,AVGACTHSTEXT!1,1,1,1!2,2,2,2
  71. define command {
  72. command_name check_nagiostats
  73. command_line $USER3$/check_nagiostats.py -V $ARG1$ -w $ARG2$ -c $ARG3$
  74. }
  75. ### check_netconnections.py
  76. # check_command check_netconnections!22
  77. define command {
  78. command_name check_netconnections
  79. command_line $USER3$/check_netconnections -p $ARG1$
  80. }
  81. # check_command check_netconnections_udp!53
  82. define command {
  83. command_name check_netconnections_udp
  84. command_line $USER3$/check_netconnections --udp -p $ARG1$
  85. }
  86. ### check_sensors.py
  87. # check_command check_sensors!20000,20001!16:20!14:24!40:60!30:70
  88. define command {
  89. command_name check_sensors
  90. command_line $USER3$/check_sensors.py -s $ARG1$ -w $ARG2$ -c $ARG3$ -W $ARG4$ -C $ARG5$
  91. }
  92. # check_command check_sensors_temperature!20000!16:20!14:24
  93. define command {
  94. command_name check_sensors_temperature
  95. command_line $USER3$/check_sensors.py -s $ARG1$ -w $ARG2$ -c $ARG3$
  96. }
  97. # check_command check_sensors_humidity!20001!40:60!30:70
  98. define command {
  99. command_name check_sensors_humidity
  100. command_line $USER3$/check_sensors.py -s $ARG1$ -W $ARG2$ -C $ARG3$
  101. }
  102. ### check_xbps.py
  103. # check_command check_xbps
  104. define command {
  105. command_name check_xbps
  106. command_line $USER3$/check_xbps.py
  107. }
  108. # check_command check_xbps
  109. define command {
  110. command_name check_xbps_syncrepoindex
  111. command_line $USER3$/check_xbps.py -S
  112. }
  113. ### check_zypper.sh
  114. # check_command check_zypper
  115. define command {
  116. command_name check_zypper
  117. command_line $USER3$/check_zypper.sh
  118. }