mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
10 lines
148 B
Go
10 lines
148 B
Go
|
package fs
|
||
|
|
||
|
import (
|
||
|
"golang.org/x/sys/unix"
|
||
|
)
|
||
|
|
||
|
func freeSpace(stat unix.Statfs_t) uint64 {
|
||
|
return uint64(stat.F_bavail) * uint64(stat.F_bsize)
|
||
|
}
|