mirror of
https://github.com/henrygd/beszel.git
synced 2026-03-21 21:26:16 +01:00
12 lines
163 B
Go
12 lines
163 B
Go
//go:build freebsd
|
|
|
|
package zfs
|
|
|
|
import (
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func ARCSize() (uint64, error) {
|
|
return unix.SysctlUint64("kstat.zfs.misc.arcstats.size")
|
|
}
|