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