From 81a6daa46d4c2d63497573290fb2e2703e26533c Mon Sep 17 00:00:00 2001 From: Tom De Vylder Date: Thu, 7 May 2015 10:35:04 +0200 Subject: [PATCH] Add module usage documentation --- README.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/README.md b/README.md index b9a4276..fe40159 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,45 @@ Debian and derivatives only: } } +### Business process module + + node /box/ { + class { + 'icingaweb2':; + 'icingaweb2::mod::businessprocess':; + } + } + +### Deployment module + + node /box/ { + class { + 'icingaweb2':; + 'icingaweb2::mod::deployment': + auth_token => 'secret_token'; + } + } + +### Graphite module + + node /box/ { + class { + 'icingaweb2':; + 'icingaweb2::mod::graphite': + graphite_base_url => 'http://graphite.com/render?'; + } + } + +### NagVis module + + node /box/ { + class { + 'icingaweb2':; + 'icingaweb2::mod::nagvis': + nagvis_url => 'http://example.org/nagvis/'; + } + } + ## Contributing * Fork it