Releases: pdf/zfs_exporter
Releases · pdf/zfs_exporter
Release v2.2.1
Changes in this release:
2.2.1 (2021-09-13)
Bug Fixes
- collector: Avoid race on upstream channel close, tidy sync points (e6fbdf5)
- docs: Document web.disable-exporter-metrics flag in README (20182da)
Release v2.2.0
Changes in this release:
2.2.0 (2021-09-04)
Bug Fixes
- docs: Correct misspelling (066c7d2)
Features
- metrics: Allow disabling exporter metrics (1ca8717), closes #2
Release v2.1.1
Changes in this release:
2.1.1 (2021-08-27)
Bug Fixes
- build: Update to Go 1.17 for crossbuild, and enable all platforms (f47b69a)
- core: Update dependencies (b39382b)
Release v2.1.0
Changes in this release:
2.1.0 (2021-08-18)
Bug Fixes
- logging: Include collector in warning for unsupported properties (1760a4a)
- metrics: Invert ratio for multiplier fields, and clarify their docs (1a7bc3a), closes #11
Features
Release v2.0.0
Changes in this release:
2.0.0 (2021-08-14)
Code Refactoring
- collector: Migrate to internal ZFS CLI implementation (53b0e98), closes #7 #9 #10
Features
- performance: Execute collection concurrently per pool (ccc6f22)
- zfs: Add local ZFS CLI parsing (f5050b1)
BREAKING CHANGES
- collector: Ratio values are now properly calculated in the range
0-1, rather than being passed verbatim.
The following metrics are affected by this change:
- zfs_pool_deduplication_ratio
- zfs_pool_capacity_ratio
- zfs_pool_fragmentation_ratio
- zfs_dataset_compression_ratio
- zfs_dataset_referenced_compression_ratio
Additionally, the zfs_dataset_fragmentation_percent metric has been
renamed to zfs_dataset_fragmentation_ratio.
Release v1.0.1
Changes in this release:
1.0.1 (2021-08-03)
Bug Fixes
- fix copy and paste errors when accessing dataset properties (c0fc6b2)
Release v1.0.0
Changes in this release:
1.0.0 (2021-06-22)
Bug Fixes
- ci: Fix syntax error in github actions workflow (0b6e8bc)
Code Refactoring
- core: Update prometheus toolchain and refactor internals (056b386)
Features
- enhancement: Allow excluding datasets by regular expression (8dd48ba), closes #3
BREAKING CHANGES
- core: Go API has changed somewhat, but metrics remain
unaffected.
v0.0.3
- Do not re-use
done
channel for local and global flow control (#1)
v0.0.2
- Extract locking from ZFSCollector.Collect() to metricCache type