svci/doc/svci.toml

42 lines
922 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.
2022-11-28 13:56:34 +00:00
###
### Define one InfluxDB to save metrics into
### There must be only one and it should be named [influx]
###
# InfluxDB v1.x example
#[influx]
#url = "http://localhost:8086"
#username = "root"
#password = ""
#database = "svci"
# InfluxDB v2.x example
2022-11-28 13:56:34 +00:00
[influx]
url = "http://localhost:8086"
org = "myOrg"
token = "rAnd0mT0k3nG3neRaT3dByInF1uxDb=="
bucket = "svci"
###
### Define one or more SVC's to query for metrics
### Each entry must be named [svc.<something-unique>]
###
2022-11-28 13:56:34 +00:00
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>]
###
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"
refresh = 30 # How often to query SVC for data - in seconds
2023-03-08 09:28:27 +00:00
trust = true # Ignore SSL cert. errors (due to default self-signed cert.)
2022-11-28 13:56:34 +00:00