mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 12:37:25 +01:00
30 lines
475 B
Markdown
30 lines
475 B
Markdown
|
|
||
|
## `lustrestat` collector
|
||
|
|
||
|
```json
|
||
|
"lustrestat": {
|
||
|
"procfiles" : [
|
||
|
"/proc/fs/lustre/llite/lnec-XXXXXX/stats"
|
||
|
],
|
||
|
"exclude_metrics": [
|
||
|
"setattr",
|
||
|
"getattr"
|
||
|
]
|
||
|
}
|
||
|
```
|
||
|
|
||
|
The `lustrestat` collector reads from the procfs stat files for Lustre like `/proc/fs/lustre/llite/lnec-XXXXXX/stats`.
|
||
|
|
||
|
Metrics:
|
||
|
* `read_bytes`
|
||
|
* `read_requests`
|
||
|
* `write_bytes`
|
||
|
* `write_requests`
|
||
|
* `open`
|
||
|
* `close`
|
||
|
* `getattr`
|
||
|
* `setattr`
|
||
|
* `statfs`
|
||
|
* `inode_permission`
|
||
|
|