hmci/doc/hmci.groovy.tpl

40 lines
776 B
Smarty
Raw Normal View History

/*
2020-08-14 09:50:44 +00:00
Copy this file to /etc/hmci.groovy and change it to suit your environment.
*/
2020-08-14 09:50:44 +00:00
// Query HMC's for data - in seconds
2020-08-14 07:34:44 +00:00
hmci.refresh = 30
2020-08-14 09:50:44 +00:00
// Rescan HMC's for new systems and partitions - every x refresh
2020-08-14 07:34:44 +00:00
hmci.rescan = 60
// InfluxDB to save metrics
influx {
2020-08-14 09:50:44 +00:00
url = "http://localhost:8086"
username = "root"
password = ""
database = "hmci"
}
// One or more HMC to query for data and metrics
hmc {
// HMC on our primary site
site1 {
2020-08-14 09:50:44 +00:00
url = "https://10.10.10.10:12443"
username = "hmci"
password = "hmcihmci"
2020-08-14 09:50:44 +00:00
unsafe = true // Ignore SSL cert. errors
}
/*
site2 {
2020-08-14 09:50:44 +00:00
url = "https://10.10.20.20:12443"
username = "viewer"
password = "someSecret"
unsafe = false
}
*/
}