hmci/src/test/resources/hmci.toml

32 lines
719 B
TOML

# HMCi Configuration
# InfluxDB to save metrics
[influx]
url = "http://localhost:8086"
username = "root"
password = ""
database = "hmci"
# HMC on our primary site
[hmc.site1]
url = "https://10.10.10.10:12443"
username = "hmci"
password = "hmcihmci"
refresh = 29
discover = 59
trust = true # Ignore SSL cert. errors
energy = false # Do not try to collect energy metrics
excludeSystems = [ 'notThisSys', 'andNotThisSys' ]
includeSystems = [ 'onlyThisSys', 'andOnlyThisSys' ]
excludePartitions = [ 'notThisPartition' ]
includePartitions = [ 'onlyThisPartition' ]
# Example
[hmc.site2]
url = "https://10.10.20.20:12443"
username = "viewer"
password = "someSecret"
trust = false
energy = true
trace = "/tmp/pcm-files"