Trim21
2 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
3 deletions
-
weed/server/master_server_handlers_ui.go
-
weed/server/volume_server_handlers_ui.go
|
|
|
@ -1,10 +1,11 @@ |
|
|
|
package weed_server |
|
|
|
|
|
|
|
import ( |
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util/version" |
|
|
|
"net/http" |
|
|
|
"time" |
|
|
|
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util/version" |
|
|
|
|
|
|
|
hashicorpRaft "github.com/hashicorp/raft" |
|
|
|
"github.com/seaweedfs/raft" |
|
|
|
|
|
|
|
@ -14,7 +15,7 @@ import ( |
|
|
|
|
|
|
|
func (ms *MasterServer) uiStatusHandler(w http.ResponseWriter, r *http.Request) { |
|
|
|
infos := make(map[string]interface{}) |
|
|
|
infos["Up Time"] = time.Now().Sub(startTime).String() |
|
|
|
infos["Up Time"] = time.Since(startTime).Truncate(time.Second).String() |
|
|
|
infos["Max Volume Id"] = ms.Topo.GetMaxVolumeId() |
|
|
|
|
|
|
|
ms.Topo.RaftServerAccessLock.RLock() |
|
|
|
|
|
|
|
@ -18,7 +18,7 @@ import ( |
|
|
|
func (vs *VolumeServer) uiStatusHandler(w http.ResponseWriter, r *http.Request) { |
|
|
|
w.Header().Set("Server", "SeaweedFS Volume "+version.VERSION) |
|
|
|
infos := make(map[string]interface{}) |
|
|
|
infos["Up Time"] = time.Now().Sub(startTime).String() |
|
|
|
infos["Up Time"] = time.Since(startTime).Truncate(time.Second).String() |
|
|
|
var ds []*volume_server_pb.DiskStatus |
|
|
|
for _, loc := range vs.store.Locations { |
|
|
|
if dir, e := filepath.Abs(loc.Directory); e == nil { |
|
|
|
|