Mark Nellemann
88e45c21d9
All checks were successful
continuous-integration/drone/push Build is passing
42 lines
922 B
TOML
42 lines
922 B
TOML
# SVCi Configuration
|
|
# Copy this file into /etc/svci.toml and customize it to your environment.
|
|
|
|
###
|
|
### 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
|
|
[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>]
|
|
###
|
|
|
|
|
|
###
|
|
### Define one or more SVC's to query for metrics
|
|
### Each entry must be named [svc.<something-unique>]
|
|
###
|
|
|
|
[svc.site1]
|
|
url = "https://10.10.10.5:7443"
|
|
username = "superuser"
|
|
password = "password"
|
|
refresh = 30 # How often to query SVC for data - in seconds
|
|
trust = true # Ignore SSL cert. errors (due to default self-signed cert.)
|
|
|