Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lorenz/zfs_exporter
ZFS exporter [WIP]
https://github.com/lorenz/zfs_exporter
Last synced: 1 day ago
JSON representation
ZFS exporter [WIP]
- Host: GitHub
- URL: https://github.com/lorenz/zfs_exporter
- Owner: lorenz
- License: apache-2.0
- Created: 2021-09-13T19:24:27.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-16T00:59:07.000Z (almost 2 years ago)
- Last Synced: 2024-06-21T16:56:14.667Z (7 months ago)
- Language: Go
- Size: 12.7 KB
- Stars: 4
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ZFS exporter
_ZFS metrics exporter for Prometheus_
:warning: **This is unstable and the exported metrics will definitely still change. It might also be
abandoned completely and merged into node_exporter**## Notes
This currently exposes all basic stats (vdev_stats) and most extended stats (vdev_stats_ex) on a
vdev-level. It doesn't expose per-disk or per-zpool stats, even though these are also available from
the underlying API.## Building with version information
```sh
go build -ldflags="-s -w
-X github.com/prometheus/common/version.Version=$(git describe --tags --dirty --always)
-X github.com/prometheus/common/version.BuildUser=$(whoami)
-X github.com/prometheus/common/version.BuildDate=$(date +%Y-%m-%d)
-X github.com/prometheus/common/version.Revision=$(git rev-parse --short HEAD)
-X github.com/prometheus/common/version.Branch=$(git rev-parse --abbrev-ref HEAD)"
```