updatereadme

This commit is contained in:
Sophie Schiller 2021-04-10 16:07:17 +02:00
parent 44293e9323
commit 6d2279a51a
1 changed files with 11 additions and 7 deletions

View File

@ -2,17 +2,21 @@
## 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]
baseurl = https://example.org:5665
username = root
password = foobar
baseurl = "https://127.0.0.1:5665"
username = "root"
password = "foobar"
[filters]
services = "checks_with_sms" in service.groups
hosts = "checks_with_sms" in host.groups
services = '"checks_with_sms" in service.groups'
[prettify]
NGINX = "Webserver"
CONTENT = ""
PROCESS = ""
[output]
filename = index.html
filename = "index.html"
```