hmci/doc/hmci.toml

34 lines
698 B
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"
# One or more HMC's to query for data and metrics
[hmc]
2021-10-29 06:38:10 +00:00
# HMC on our primary site
[hmc.site1]
url = "https://10.10.10.10:12443"
username = "hmci"
password = "hmcihmci"
unsafe = true # Ignore SSL cert. errors
2021-01-14 12:51:18 +00:00
2021-10-29 06:38:10 +00:00
# Example
#[hmc.site2]
#url = "https://10.10.20.20:12443"
#username = "viewer"
#password = "someSecret"
#unsafe = false