mirror of
https://github.com/henrygd/beszel.git
synced 2026-09-21 17:07:47 +02:00
- track pool capacity, health, I/O, scrub status, and vdev errors - report dataset usage and correct ZFS filesystem metrics - add pool charts, detail views, refresh controls, and health alerts - persist pool details and include ZFS usage in disk alerts - support configurable detail intervals and legacy agent compatibility --------- Co-authored-by: hank <hank@henrygd.me>
14 lines
218 B
Go
14 lines
218 B
Go
//go:build !linux && !freebsd
|
|
|
|
package zfs
|
|
|
|
import "errors"
|
|
|
|
func ARCSize() (uint64, error) {
|
|
return 0, errors.ErrUnsupported
|
|
}
|
|
|
|
func PoolKernelStats() ([]PoolKernelStat, error) {
|
|
return nil, errors.ErrUnsupported
|
|
}
|