Nagios monitoring WindowsThe specific process of the client is as follows:
Figure-Nagios
If you do not need any other configurations for the Nagios monitoring server, write services. cfg.
The configuration of a Windows 2003 Server in my monitoring company is as follows:
- define service {
-
- host_name Web-Server
-
- service_description Check-Memory
-
- check_period 24x7
-
- max_check_attempts 4
-
- normal_check_interval 3
-
- retry_check_interval 2
-
- contact_groups sagroup
-
- notification_interval 10
-
- notification_period 24x7
-
- notification_options w,u,c,r
-
- check_command check_nt!MEMUSE!-w 80 -c 90
-
- }
-
- define service {
-
- host_name Web-Server
-
- service_description Check-Disk-C
-
- check_period 24x7
-
- max_check_attempts 4
-
- normal_check_interval 3
-
- retry_check_interval 2
-
- contact_groups sagroup
-
- notification_interval 10
-
- notification_period 24x7
-
- notification_options w,u,c,r
-
- check_command check_nt!USEDDISKSPACE!-l c -w 80 -c 90
-
- }
-
- define service {
-
- host_name Web-Server
-
- service_description Check-Disk-D
-
- check_period 24x7
-
- max_check_attempts 4
-
- normal_check_interval 3
-
- retry_check_interval 2
-
- contact_groups sagroup
-
- notification_interval 10
-
- notification_period 24x7
-
- notification_options w,u,c,r
-
- check_command check_nt!USEDDISKSPACE!-l d -w 80 -c 90
-
- }
-
Based on the description in the article, we found that Nagios monitors Windows clients with good configuration. Please configure one now!