diff options
author | nadir <nadir-technik@nadir.org> | 2010-12-12 18:35:08 +0100 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2013-02-14 17:59:00 -0500 |
commit | cd6386a3854099a312891ef65d86ce72e9a86912 (patch) | |
tree | 3d84e627122b303cccf0941b66912abdc95cd9c7 | |
parent | dc61b5b838a2835be4f2b89d585f7daef980e6ea (diff) |
added pnp-grapher templates for explicit use
-rw-r--r-- | files/pnp4nagios/pnp4nagios-templates.cfg | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/files/pnp4nagios/pnp4nagios-templates.cfg b/files/pnp4nagios/pnp4nagios-templates.cfg index 14b60c9..64c5186 100644 --- a/files/pnp4nagios/pnp4nagios-templates.cfg +++ b/files/pnp4nagios/pnp4nagios-templates.cfg @@ -1,5 +1,7 @@ # http://docs.pnp4nagios.org/de/pnp-0.6/webfe +# templates for additional use, i.e. +# use => 'generic-host,host-pnp' define host { name host-pnp action_url /pnp4nagios/index.php/graph?host=$HOSTNAME$&srv=_HOST_ @@ -12,3 +14,20 @@ define service { register 0 } +# templates for explicit use, i.e. +# use => 'generic-host-pnp' + +define host { + name generic-host-pnp + use generic-host,host-pnp +# action_url /pnp4nagios/index.php/graph?host=$HOSTNAME$&srv=_HOST_ + register 0 +} + +define service { + name generic-service-pnp + use generic-service,srv-pnp +# action_url /pnp4nagios/index.php/graph?host=$HOSTNAME$&srv=_HOST_ + register 0 +} + |