Change joeslay paths to chrislusf paths

This commit is contained in:
j.laycock
2019-09-12 14:18:21 +01:00
parent d8c34b032f
commit 6fc6322c90
244 changed files with 745 additions and 815 deletions

View File

@@ -1,6 +1,6 @@
package stats
import "github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
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}

View File

@@ -2,7 +2,7 @@
package stats
import "github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
import "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
func fillInDiskStatus(status *volume_server_pb.DiskStatus) {
return

View File

@@ -5,7 +5,7 @@ package stats
import (
"syscall"
"github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
)
func fillInDiskStatus(disk *volume_server_pb.DiskStatus) {

View File

@@ -3,7 +3,7 @@ package stats
import (
"runtime"
"github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
)
func MemStat() *volume_server_pb.MemStatus {

View File

@@ -2,7 +2,7 @@
package stats
import "github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
import "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
func fillInMemStatus(status *volume_server_pb.MemStatus) {
return

View File

@@ -5,7 +5,7 @@ package stats
import (
"syscall"
"github.com/joeslay/seaweedfs/weed/pb/volume_server_pb"
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
)
func fillInMemStatus(mem *volume_server_pb.MemStatus) {

View File

@@ -5,7 +5,7 @@ import (
"os"
"time"
"github.com/joeslay/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/push"
)