mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 12:37:25 +01:00
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"natsrecv": {
|
|
"type": "nats",
|
|
"address": "nats://my-url",
|
|
"port": "4222",
|
|
"database": "testcluster"
|
|
},
|
|
"redfish_recv": {
|
|
"type": "redfish",
|
|
"endpoint": "https://%h-bmc",
|
|
"client_config": [
|
|
{
|
|
"host_list": "my-host-1-[1-2]",
|
|
"username": "username-1",
|
|
"password": "password-1"
|
|
},
|
|
{
|
|
"host_list": "my-host-2-[1,2]",
|
|
"username": "username-2",
|
|
"password": "password-2"
|
|
}
|
|
]
|
|
},
|
|
"ipmi_recv": {
|
|
"type": "ipmi",
|
|
"endpoint": "ipmi-sensors://%h-ipmi",
|
|
"exclude_metrics": [
|
|
"fan_speed",
|
|
"voltage"
|
|
],
|
|
"client_config": [
|
|
{
|
|
"username": "username-1",
|
|
"password": "password-1",
|
|
"host_list": "my-host-1-[1-2]"
|
|
},
|
|
{
|
|
"username": "username-2",
|
|
"password": "password-2",
|
|
"host_list": "my-host-2-[1,2]"
|
|
}
|
|
]
|
|
}
|
|
} |