nagios监控客户端应用81,82,22

 

 
  
  
  
  
  1. 监控客户端81,82,22,
  2. [root@svr4 ~]# vim /usr/local/nagios/etc/objects/hosts.cfg  
  3. define host { 
  4. host_name svr1.labexam.com 
  5. alias svr1 
  6. address 10.1.1.10 
  7. contact_groups sagroup 
  8. check_command check-host-alive 
  9. check_command nrpe!check_users 
  10. check_command nrpe!check_total_procs 
  11. check_command nrpe!check_load 
  12. max_check_attempts 4 
  13. notification_interval 5 
  14. notification_period 24x7 
  15. notification_options d,u,r 
  16.  
  17.  
  18. [root@svr4 objects]# vim svr1_services.cfg  
  19. define service { 
  20.         host_name svr1.labexam.com 
  21.         service_description ALIVE 
  22.         check_period 24x7 
  23.         max_check_attempts 2 
  24.         normal_check_interval 2 
  25.         retry_check_interval 1 
  26.         contact_groups sagroup 
  27.         notification_interval 5 
  28.         notification_period 24x7 
  29.         notification_options w,u,c,r 
  30.         check_command check-host-alive 
  31.  
  32. define service { 
  33.         host_name svr1.labexam.com 
  34.         service_description SSH 
  35.         check_period 24x7 
  36.         max_check_attempts 2 
  37.         normal_check_interval 1 
  38.         retry_check_interval 2 
  39.         contact_groups sagroup 
  40.         notification_interval 5 
  41.         notification_period 24x7 
  42.         notification_options w,u,c,r 
  43.         check_command check_tcp!22 
  44.  
  45. define service { 
  46.         host_name svr1.labexam.com 
  47.         service_description  HTTP_81 
  48.         check_period 24x7 
  49.         max_check_attempts 2 
  50.         normal_check_interval 1 
  51.         retry_check_interval 1 
  52.         contact_groups sagroup 
  53.         notification_interval 5 
  54.         notification_period 24x7 
  55.         notification_options w,u,c,r 
  56.         check_command check_tcp!81 
  57.  
  58. define service { 
  59.         host_name svr1.labexam.com 
  60.         service_description  HTTP_82 
  61.         check_period 24x7 
  62.         max_check_attempts 2 
  63.         normal_check_interval 1 
  64.         retry_check_interval 1 
  65.         contact_groups sagroup 
  66.         notification_interval 5 
  67.         notification_period 24x7 
  68.         notification_options w,u,c,r 
  69.         check_command check_tcp!82 
  70. define service { 
  71.         host_name svr1.labexam.com 
  72.         service_description FASTCGI 
  73.         check_period 24x7 
  74.         max_check_attempts 2 
  75.         normal_check_interval 1 
  76.         retry_check_interval 1 
  77.         contact_groups sagroup 
  78.         notification_interval 5 
  79.         notification_period 24x7 
  80.         notification_options w,u,c,r 
  81.         check_command check_tcp!9000 
  82. define service { 
  83.         host_name svr1.labexam.com 
  84.         service_description DISK 
  85.         check_period 24x7 
  86.         max_check_attempts 3 
  87.         normal_check_interval 2 
  88.         retry_check_interval 2 
  89.         contact_groups sagroup 
  90.         notification_interval 2 
  91.         notification_period 24x7 
  92.         notification_options w,u,c,r 
  93.         check_command nrpe!check_df 
  94.  
  95. define service { 
  96.         host_name svr1.labexam.com 
  97.         service_description LOAD 
  98.         check_period 24x7 
  99.         max_check_attempts 3 
  100.         normal_check_interval 2 
  101.         retry_check_interval 2 
  102.         contact_groups sagroup 
  103.         notification_interval 2 
  104.         notification_period 24x7 
  105.         notification_options w,u,c,r 
  106.         check_command nrpe!check_load 
  107.  
  108. define service { 
  109.         host_name svr1.labexam.com 
  110.         service_description  LOGOIN 
  111.         check_period 24x7 
  112.         max_check_attempts 2 
  113.         normal_check_interval 1 
  114.         retry_check_interval 1 
  115.         contact_groups sagroup 
  116.         notification_interval 5 
  117.         notification_period 24x7 
  118.         notification_options w,u,c,r 
  119.         check_command nrpe!check_users 
  120.  
  121. [root@svr4 objects]# vim /usr/local/nagios/etc/nagios.cfg  
  122. 增加一条: 
  123. cfg_file=/usr/local/nagios/etc/objects/svr1_services.cfg 
  124.  
  125. [root@svr4 objects]# /etc/init.d/nagios reload 
  126. Running configuration check...done. 
  127. Reloading nagios configuration...done 

 

nagios监控客户端应用81,82,22_第1张图片

 

本文出自 “潜入技术的海洋” 博客,请务必保留此出处http://myhat.blog.51cto.com/391263/654434

你可能感兴趣的:(职场,nagios,nrpe,休闲)