diff options
Diffstat (limited to 'Monitoring/nagios/shinken/services/linux_local.cfg')
-rw-r--r-- | Monitoring/nagios/shinken/services/linux_local.cfg | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Monitoring/nagios/shinken/services/linux_local.cfg b/Monitoring/nagios/shinken/services/linux_local.cfg new file mode 100644 index 00000000..7d0f52ef --- /dev/null +++ b/Monitoring/nagios/shinken/services/linux_local.cfg @@ -0,0 +1,44 @@ +define service{ + service_description LocalDisks + host_name localhost + use local-service ; Name of service template to use + icon_set disk + + check_command check_local_disks + } + + +define service{ + service_description LocalLoad + use local-service ; Name of service template to use + host_name localhost + + check_command check_local_load + } + + +define service{ + service_description LocalMem + use local-service ; Name of service template to use + host_name localhost + + check_command check_local_mem + } + +define service{ + service_description LocalSwap + use local-service ; Name of service template to use + host_name localhost + + check_command check_local_swap + } + +define service{ + service_description LocalCpu + use local-service ; Name of service template to use + host_name localhost + + check_command check_local_cpu + } + + |