Make sample configuration more readable.

Fixes #4724
This commit is contained in:
Gunnar Beutner 2013-09-24 11:24:22 +02:00
parent d88d2a258a
commit 8568b4b701
2 changed files with 35 additions and 10 deletions

View File

@ -30,15 +30,38 @@ object CompatLog "compat-log" { }
* And finally we define some host that should be checked.
*/
object Host "localhost" {
services["ping4"] = { templates = [ "ping4" ] },
services["ping6"] = { templates = [ "ping6" ] },
services["http"] = { templates = [ "http_ip" ] },
services["ssh"] = { templates = [ "ssh" ] },
services["load"] = { templates = [ "load" ] },
services["processes"] = { templates = [ "processes" ] },
services["users"] = { templates = [ "users" ] },
services["disk"] = { templates = [ "disk" ] },
services["ping4"] = {
templates = [ "ping4" ]
},
services["ping6"] = {
templates = [ "ping6" ]
},
services["http"] = {
templates = [ "http_ip" ]
},
services["ssh"] = {
templates = [ "ssh" ]
},
services["load"] = {
templates = [ "load" ]
},
services["processes"] = {
templates = [ "processes" ]
},
services["users"] = {
templates = [ "users" ]
},
services["disk"] = {
templates = [ "disk" ]
},
macros = {
address = "127.0.0.1",
address6 = "::1",

View File

@ -37,7 +37,9 @@ object Component "compat" {
* And finally we define some host that should be checked.
*/
object Host "localhost" inherits "itl-host" {
services["ping4"] = { templates = [ "ping4" ] },
services["ping4"] = {
templates = [ "ping4" ]
},
macros = {
address = "127.0.0.1"