2022-11-28 13:56:34 +00:00
|
|
|
# SVCi Configuration
|
|
|
|
|
2023-05-20 10:38:35 +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"
|
2023-05-20 10:38:35 +00:00
|
|
|
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
|
|
|
|
|
|
|
# SVC on our primary site
|
|
|
|
[svc.site1]
|
|
|
|
url = "https://10.10.10.12:7443"
|
|
|
|
username = "superuser"
|
|
|
|
password = "password"
|
2022-11-29 16:20:47 +00:00
|
|
|
refresh = 30
|
2022-11-28 13:56:34 +00:00
|
|
|
trust = true # Ignore SSL cert. errors
|
|
|
|
|