mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 04:27:25 +01:00
22 lines
571 B
Markdown
22 lines
571 B
Markdown
|
|
## `netstat` collector
|
|
|
|
```json
|
|
"netstat": {
|
|
"include_devices": [
|
|
"eth0"
|
|
]
|
|
}
|
|
```
|
|
|
|
The `netstat` collector reads data from `/proc/net/dev` and outputs a handful **node** metrics. With the `include_devices` list you can specify which network devices should be measured. **Note**: Most other collectors use an _exclude_ list instead of an include list.
|
|
|
|
Metrics:
|
|
* `net_bytes_in` (`unit=bytes/sec`)
|
|
* `net_bytes_out` (`unit=bytes/sec`)
|
|
* `net_pkts_in` (`unit=packets/sec`)
|
|
* `net_pkts_out` (`unit=packets/sec`)
|
|
|
|
The device name is added as tag `device`.
|
|
|