1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-07 12:01:02 +02:00
seaweedfs/weed/stats/disk.go

16 lines
356 B
Go

package stats
import (
"github.com/seaweedfs/seaweedfs/weed/glog"
"github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
)
func NewDiskStatus(path string) (disk *volume_server_pb.DiskStatus) {
disk = &volume_server_pb.DiskStatus{Dir: path}
fillInDiskStatus(disk)
if disk.PercentUsed > 95 {
glog.V(0).Infof("disk status: %v", disk)
}
return
}