svci/doc/svci.toml

30 lines
621 B
TOML
Raw Normal View History

2022-11-28 13:56:34 +00:00
# SVCi Configuration
2023-03-08 09:28:27 +00:00
# Copy this file into /etc/svci.toml and customize it to your environment.
###
### Define one InfluxDB to save metrics into
###
2022-11-28 13:56:34 +00:00
[influx]
url = "http://localhost:8086"
username = "root"
password = ""
database = "svci"
2023-03-08 09:28:27 +00:00
###
### Define one or more SVC's to query for metrics
### Each entry must be named [svc.<something-unique>]
###
# SVC to query for data and metrics
2022-11-28 13:56:34 +00:00
[svc.site1]
2023-03-08 09:28:27 +00:00
url = "https://10.10.10.5:7443"
2022-11-28 13:56:34 +00:00
username = "superuser"
password = "password"
2023-03-08 09:28:27 +00:00
refresh = 30 # How often to query HMC for data - in seconds
trust = true # Ignore SSL cert. errors (due to default self-signed cert.)
2022-11-28 13:56:34 +00:00