mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
6c9156b25f
losing filename and line number. Critical for debugging.
16 lines
354 B
Go
16 lines
354 B
Go
package stats
|
|
|
|
import (
|
|
"github.com/chrislusf/seaweedfs/weed/util/log"
|
|
"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)
|
|
if disk.PercentUsed > 95 {
|
|
log.Infof("disk status: %v", disk)
|
|
}
|
|
return
|
|
}
|