aboutsummaryrefslogtreecommitdiff
path: root/weed/stats/disk.go
blob: 22e3063120a33214c65bd9e161ee214d43a41a9b (plain)
1
2
3
4
5
6
7
8
9
package stats

import "github.com/joeslay/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
}