mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2025-04-06 13:35:55 +02:00
Added diskstats to collector configjson
This commit is contained in:
parent
f496db4905
commit
550e61b650
BIN
cc-metric-collector
Executable file
BIN
cc-metric-collector
Executable file
Binary file not shown.
@ -6,6 +6,11 @@
|
|||||||
"test_fs"
|
"test_fs"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"diskstat": {
|
||||||
|
"exclude_metrics": [
|
||||||
|
"disk_total"
|
||||||
|
]
|
||||||
|
},
|
||||||
"ibstat": {},
|
"ibstat": {},
|
||||||
"loadavg": {
|
"loadavg": {
|
||||||
"exclude_metrics": [
|
"exclude_metrics": [
|
||||||
|
@ -1,44 +1,8 @@
|
|||||||
{
|
{
|
||||||
"natsrecv": {
|
"nats_recv": {
|
||||||
"type": "nats",
|
"type": "nats",
|
||||||
"address": "nats://my-url",
|
"address" : "127.0.0.1",
|
||||||
"port": "4222",
|
"port" : "4222",
|
||||||
"database": "testcluster"
|
"subject" : "subject"
|
||||||
},
|
|
||||||
"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]"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
20
sinks.json
20
sinks.json
@ -1,8 +1,18 @@
|
|||||||
{
|
{
|
||||||
"mystdout": {
|
"influxdb": {
|
||||||
"type": "stdout",
|
"type": "influxasync",
|
||||||
"meta_as_tags": [
|
"database": "Bucket",
|
||||||
"unit"
|
"host": "localhost",
|
||||||
]
|
"port": "8086",
|
||||||
|
"user": "",
|
||||||
|
"password": "9GQv2m099okVndYbhkZT_lcMsH2XMcjlGkJT59D-fJyytowDwTNgiG8FJli1YI6HSvjaJOf_xtF2cZZis7CbJQ==",
|
||||||
|
"organization": "myorg",
|
||||||
|
"ssl": false,
|
||||||
|
"batch_size": 200,
|
||||||
|
"retry_interval": "1s",
|
||||||
|
"retry_exponential_base": 2,
|
||||||
|
"max_retries": 20,
|
||||||
|
"max_retry_time": "168h",
|
||||||
|
"meta_as_tags": []
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user