diff --git a/cc-metric-collector b/cc-metric-collector new file mode 100755 index 0000000..ea4783a Binary files /dev/null and b/cc-metric-collector differ diff --git a/collectors.json b/collectors.json index 42cb833..0b73b05 100644 --- a/collectors.json +++ b/collectors.json @@ -6,6 +6,11 @@ "test_fs" ] }, + "diskstat": { + "exclude_metrics": [ + "disk_total" + ] + }, "ibstat": {}, "loadavg": { "exclude_metrics": [ diff --git a/receivers.json b/receivers.json index dac979e..8e5d9f1 100644 --- a/receivers.json +++ b/receivers.json @@ -1,44 +1,8 @@ { - "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]" - } - ] + "nats_recv": { + "type": "nats", + "address" : "127.0.0.1", + "port" : "4222", + "subject" : "subject" } -} \ No newline at end of file + } \ No newline at end of file diff --git a/sinks.json b/sinks.json index 3e9be6d..bcdb51b 100644 --- a/sinks.json +++ b/sinks.json @@ -1,8 +1,18 @@ { - "mystdout": { - "type": "stdout", - "meta_as_tags": [ - "unit" - ] + "influxdb": { + "type": "influxasync", + "database": "Bucket", + "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": [] } } \ No newline at end of file