seaweedfs/weed/stats/disk.go

10 lines
231 B
Go
Raw Normal View History

package stats
2019-09-02 10:28:40 +00:00
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
}