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