mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
add disk stat to logs
This commit is contained in:
parent
6e776aaafc
commit
f7b5a1d697
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue