2014-03-25 13:46:59 -07:00
|
|
|
package stats
|
|
|
|
|
2020-04-04 13:17:23 -07:00
|
|
|
import (
|
2022-07-29 00:17:28 -07:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
|
2020-04-04 13:17:23 -07:00
|
|
|
)
|
2014-03-25 13:46:59 -07:00
|
|
|
|
2018-10-15 22:25:28 -07:00
|
|
|
func NewDiskStatus(path string) (disk *volume_server_pb.DiskStatus) {
|
|
|
|
disk = &volume_server_pb.DiskStatus{Dir: path}
|
|
|
|
fillInDiskStatus(disk)
|
2020-08-01 11:15:52 -07:00
|
|
|
if disk.PercentUsed > 95 {
|
|
|
|
glog.V(0).Infof("disk status: %v", disk)
|
|
|
|
}
|
2014-03-25 13:46:59 -07:00
|
|
|
return
|
|
|
|
}
|