mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2025-04-26 06:01:42 +02:00
51 lines
1.0 KiB
Markdown
51 lines
1.0 KiB
Markdown
<!--
|
|
---
|
|
title: NFS network filesystem (v3) metric collector
|
|
description: Collect metrics for NFS network filesystems in version 3
|
|
categories: [cc-metric-collector]
|
|
tags: ['Admin']
|
|
weight: 2
|
|
hugo_path: docs/reference/cc-metric-collector/collectors/nfs3.md
|
|
---
|
|
-->
|
|
|
|
|
|
## `nfs3stat` collector
|
|
|
|
```json
|
|
"nfs3stat": {
|
|
"nfsstat" : "/path/to/nfsstat",
|
|
"exclude_metrics": [
|
|
"nfs3_total"
|
|
]
|
|
}
|
|
```
|
|
|
|
The `nfs3stat` collector reads data from `nfsstat` command and outputs a handful **node** metrics. If a metric is not required, it can be excluded from forwarding it to the sink. There is currently no possibility to get the metrics per mount point.
|
|
|
|
|
|
Metrics:
|
|
* `nfs3_total`
|
|
* `nfs3_null`
|
|
* `nfs3_getattr`
|
|
* `nfs3_setattr`
|
|
* `nfs3_lookup`
|
|
* `nfs3_access`
|
|
* `nfs3_readlink`
|
|
* `nfs3_read`
|
|
* `nfs3_write`
|
|
* `nfs3_create`
|
|
* `nfs3_mkdir`
|
|
* `nfs3_symlink`
|
|
* `nfs3_remove`
|
|
* `nfs3_rmdir`
|
|
* `nfs3_rename`
|
|
* `nfs3_link`
|
|
* `nfs3_readdir`
|
|
* `nfs3_readdirplus`
|
|
* `nfs3_fsstat`
|
|
* `nfs3_fsinfo`
|
|
* `nfs3_pathconf`
|
|
* `nfs3_commit`
|
|
|