updatereadme

This commit is contained in:
Sophie Schiller 2021-04-10 16:07:17 +02:00
parent 44293e9323
commit 6d2279a51a

View file

@ -2,17 +2,21 @@
## Config file ## Config file
This script requires an ini-style config file named `config.conf` for icinga base url and credentials. This script requires an toml config file named `config.tom.` for icinga base url and credentials.
``` ```
[icinga2_api] [icinga2_api]
baseurl = https://example.org:5665 baseurl = "https://127.0.0.1:5665"
username = root username = "root"
password = foobar password = "foobar"
[filters] [filters]
services = "checks_with_sms" in service.groups services = '"checks_with_sms" in service.groups'
hosts = "checks_with_sms" in host.groups
[prettify]
NGINX = "Webserver"
CONTENT = ""
PROCESS = ""
[output] [output]
filename = index.html filename = "index.html"
``` ```