hmci/doc/hmci.toml

51 lines
1.5 KiB
TOML
Raw Normal View History

# HMCi Configuration
2022-02-14 12:04:32 +00:00
# Copy this file into /etc/hmci.toml and customize it to your environment.
###
### General HMCi Settings
###
# How often to query HMC's for data - in seconds
2021-10-29 06:38:10 +00:00
hmci.update = 30
2021-01-14 12:51:18 +00:00
# Rescan HMC's for new systems and partitions - every x update
2021-10-29 06:38:10 +00:00
hmci.rescan = 120
2022-02-14 12:04:32 +00:00
###
### Define one InfluxDB to save metrics into
###
[influx]
2021-10-29 06:38:10 +00:00
url = "http://localhost:8086"
username = "root"
password = ""
database = "hmci"
2022-02-14 12:04:32 +00:00
###
### Define one or more HMC's to query for metrics
### Each entry must be named [hmc.<something-unique>]
###
# HMC to query for data and metrics
2021-10-29 06:38:10 +00:00
[hmc.site1]
url = "https://10.10.10.10:12443"
username = "hmci"
password = "hmcihmci"
unsafe = true # Ignore SSL cert. errors
2022-02-14 12:04:32 +00:00
# Another HMC example
#[hmc.site2]
2022-02-14 12:04:32 +00:00
#url = "https://10.10.10.30:12443"
#username = "user"
#password = "password"
#unsafe = false # When false, validate SSL/TLS cerfificate, default is true
#energy = false # When false, do not collect energy metrics, default is true
#trace = "/tmp/hmci-trace" # When present, store JSON metrics files from HMC into this folder
2022-02-23 10:48:00 +00:00
#excludeSystems = [ 'notThisSystem' ] # Collect metrics from all systems except those listed here
#includeSystems = [ 'onlyThisSystems' ] # Collcet metrics from no systems but those listed here
#excludePartitions = [ 'skipThisPartition' ] # Collect metrics from all partitions except those listed here
#includePartitions = [ 'onlyThisPartition' ] # Collect metrics from no partitions but those listed here