add disk stat to logs
This commit is contained in:
@@ -1,9 +1,13 @@
|
|||||||
package stats
|
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) {
|
func NewDiskStatus(path string) (disk *volume_server_pb.DiskStatus) {
|
||||||
disk = &volume_server_pb.DiskStatus{Dir: path}
|
disk = &volume_server_pb.DiskStatus{Dir: path}
|
||||||
fillInDiskStatus(disk)
|
fillInDiskStatus(disk)
|
||||||
|
glog.V(0).Infof("read disk size: %v", disk)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user