aboutsummaryrefslogtreecommitdiff
path: root/weed/stats/disk.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/stats/disk.go')
-rw-r--r--weed/stats/disk.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/weed/stats/disk.go b/weed/stats/disk.go
index e9d8baedd..a8f906213 100644
--- a/weed/stats/disk.go
+++ b/weed/stats/disk.go
@@ -1,9 +1,15 @@
package stats
-import "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
+import (
+ "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/chrislusf/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
}