mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 12:37:25 +01:00
35 lines
597 B
Markdown
35 lines
597 B
Markdown
|
|
||
|
## `diskstat` collector
|
||
|
|
||
|
```json
|
||
|
"diskstat": {
|
||
|
"exclude_metrics": [
|
||
|
"read_ms"
|
||
|
],
|
||
|
}
|
||
|
```
|
||
|
|
||
|
The `netstat` collector reads data from `/proc/net/dev` and outputs a handful **node** metrics. If a metric is not required, it can be excluded from forwarding it to the sink.
|
||
|
|
||
|
Metrics:
|
||
|
* `reads`
|
||
|
* `reads_merged`
|
||
|
* `read_sectors`
|
||
|
* `read_ms`
|
||
|
* `writes`
|
||
|
* `writes_merged`
|
||
|
* `writes_sectors`
|
||
|
* `writes_ms`
|
||
|
* `ioops`
|
||
|
* `ioops_ms`
|
||
|
* `ioops_weighted_ms`
|
||
|
* `discards`
|
||
|
* `discards_merged`
|
||
|
* `discards_sectors`
|
||
|
* `discards_ms`
|
||
|
* `flushes`
|
||
|
* `flushes_ms`
|
||
|
|
||
|
The device name is added as tag `device`.
|
||
|
|