svci/doc/svci.toml
Mark Nellemann 3b9119f9ad
All checks were successful
continuous-integration/drone/push Build is passing
Update documentation.
2023-03-08 10:28:27 +01:00

30 lines
621 B
TOML

# SVCi Configuration
# Copy this file into /etc/svci.toml and customize it to your environment.
###
### Define one InfluxDB to save metrics into
###
[influx]
url = "http://localhost:8086"
username = "root"
password = ""
database = "svci"
###
### 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
[svc.site1]
url = "https://10.10.10.5:7443"
username = "superuser"
password = "password"
refresh = 30 # How often to query HMC for data - in seconds
trust = true # Ignore SSL cert. errors (due to default self-signed cert.)