mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 04:27:25 +01:00
2.2 KiB
2.2 KiB
Redfish receiver
The Redfish receiver uses the Redfish (specification) to query thermal and power metrics. Thermal metrics may include various fan speeds and temperatures. Power metrics may include the current power consumption of various hardware components. It may also include the minimum, maximum and average power consumption of these components in a given time interval. The receiver will poll each configured redfish device once in a given interval. Multiple devices can be accessed in parallel to increase throughput.
Configuration structure
{
"<redfish receiver name>": {
"type": "redfish",
"username": "<user A>",
"password": "<password A>",
"endpoint": "https://%h-bmc",
"exclude_metrics": [ "min_consumed_watts" ],
"client_config": [
{
"hostname": "<host 1>"
},
{
"hostname": "<host 2>",
"disable_power_metrics": true
},
{
"hostname": "<host 3>",
"username": "<user B>",
"password": "<password B>",
"endpoint": "https://%h-BMC",
"disable_thermal_metrics": true
}
]
}
}
Global settings:
fanout
: Maximum number of simultaneous redfish connections (default: 64)interval
: How often the redfish power metrics should be read and send to the sink (default: 30 s)http_insecure
: Control whether a client verifies the server's certificate (default: true == do not verify server's certificate)http_timeout
: Time limit for requests made by this HTTP client (default: 10 s)
Global and per redfish device settings (per redfish device settings overwrite the global settings):
disable_power_metrics
: disable collection of power metricsdisable_thermal_metrics
: disable collection of thermal metricsexclude_metrics
: list of excluded metricsusername
: User name to authenticate withpassword
: Password to use for authenticationendpoint
: URL of the redfish service (placeholder%h
gets replaced by the hostname)
Per redfish device settings:
hostname
: hostname the redfish service belongs to