hmci/doc/hmci.toml

36 lines
1.3 KiB
TOML
Raw Normal View History

# HMCi Configuration
2021-10-29 06:38:10 +00:00
# Copy this file into /etc/hmci.toml and customize to your environment.
# 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
2021-10-29 06:38:10 +00:00
# InfluxDB to save metrics into
[influx]
2021-10-29 06:38:10 +00:00
url = "http://localhost:8086"
username = "root"
password = ""
database = "hmci"
# 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
# Another HMC example
2021-10-29 06:38:10 +00:00
#[hmc.site2]
#url = "https://10.10.20.20:12443"
#username = "viewer"
#password = "someSecret"
#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