1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-02 00:30:58 +02:00
seaweedfs/weed/stats/disk.go
2018-10-15 22:25:28 -07:00

10 lines
233 B
Go

package stats
import "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)
return
}