Files
simple-icinga-dashboard/README.md

24 lines
431 B
Markdown

# simple-icinga-dashboard
## Config file
This script requires an toml config file named `config.tom.` for icinga base url and credentials.
```
[icinga2_api]
baseurl = "https://127.0.0.1:5665"
username = "root"
password = "foobar"
[filters]
services = '"checks_with_sms" in service.groups'
[prettify]
NGINX = "Webserver"
CONTENT = ""
PROCESS = ""
[output]
filename = "index.html"
host_order = [ "host1", "host2", "host4" ]
```