Advertisement
alexs77

nagios config excerpt

Jun 11th, 2014
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. ## check_http
  2. define service{
  3. use unix-1m-high
  4. host_name apache1-prod
  5. service_description apache1 Healthcheck
  6. check_command check_http!-H foo.ch -u /server-monitoring/loremipsum.html -s "Nulla ac nunc"
  7. }
  8.  
  9.  
  10. # check procs SysView "SVhttpd.pl"
  11. define service {
  12. use unix-3m-low
  13. host_name apache1-prod
  14. service_description Processes SysView SVhttpd.pl
  15. check_command check_nrpe!check_procs_var!-a "1:" "1:" "SVhttpd.pl"
  16. }
  17.  
  18. # check disk /var
  19. define service{
  20. use unix-15m-low
  21. host_name apache1-prod
  22. service_description Diskspace /tmp
  23. check_command check_nrpe!check_disk!-a "15%" "5%" "/tmp"
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement