Created
March 25, 2017 13:56
-
-
Save frootmig/e192c63b525655f2638db48d72f902e7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This file has been created by Ansible | |
object Service "disk" { | |
import "generic-service" | |
check_command = "disk" | |
host_name = "{{ hostitem }}" | |
} | |
object Service "load" { | |
import "generic-service" | |
check_command = "load" | |
host_name = "{{ hostitem }}" | |
} | |
object Service "procs" { | |
import "generic-service" | |
check_command = "procs" | |
host_name = "{{ hostitem }}" | |
} | |
object Service "swap" { | |
import "generic-service" | |
check_command = "swap" | |
host_name = "{{ hostitem }}" | |
} | |
object Service "users" { | |
import "generic-service" | |
check_command = "users" | |
host_name = "{{ hostitem }}" | |
} | |
object Service "apt" { | |
import "generic-service" | |
check_command = "apt" | |
host_name = "{{ hostitem }}" | |
} | |
object Service "icinga" { | |
import "generic-service" | |
check_command = "icinga" | |
host_name = "{{ hostitem }}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment