seaweedfs/weed/server/volume_server_handlers_ui.go

40 lines
957 B
Go
Raw Normal View History

2015-03-19 17:39:22 +00:00
package weed_server
import (
"net/http"
"path/filepath"
2015-03-22 19:50:04 +00:00
"time"
2015-03-19 17:39:22 +00:00
2018-10-24 06:59:49 +00:00
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
2018-05-27 18:52:26 +00:00
ui "github.com/chrislusf/seaweedfs/weed/server/volume_server_ui"
"github.com/chrislusf/seaweedfs/weed/stats"
"github.com/chrislusf/seaweedfs/weed/util"
2015-03-19 17:39:22 +00:00
)
func (vs *VolumeServer) uiStatusHandler(w http.ResponseWriter, r *http.Request) {
infos := make(map[string]interface{})
2015-03-22 19:50:04 +00:00
infos["Up Time"] = time.Now().Sub(startTime).String()
var ds []*volume_server_pb.DiskStatus
2015-03-19 17:39:22 +00:00
for _, loc := range vs.store.Locations {
if dir, e := filepath.Abs(loc.Directory); e == nil {
ds = append(ds, stats.NewDiskStatus(dir))
}
}
args := struct {
Version string
Masters []string
2015-03-19 17:39:22 +00:00
Volumes interface{}
DiskStatuses interface{}
Stats interface{}
2015-03-22 19:50:04 +00:00
Counters *stats.ServerStats
2015-03-19 17:39:22 +00:00
}{
util.VERSION,
vs.SeedMasterNodes,
2015-03-19 17:39:22 +00:00
vs.store.Status(),
ds,
infos,
2015-03-22 19:50:04 +00:00
serverStats,
2015-03-19 17:39:22 +00:00
}
ui.StatusTpl.Execute(w, args)
}