You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1021 B
39 lines
1021 B
package weedserver
|
|
|
|
import (
|
|
"net/http"
|
|
"path/filepath"
|
|
"time"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/stats"
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
|
ui "github.com/chrislusf/seaweedfs/weed/weedserver/volume_server_ui"
|
|
)
|
|
|
|
func (vs *VolumeServer) uiStatusHandler(w http.ResponseWriter, r *http.Request) {
|
|
infos := make(map[string]interface{})
|
|
infos["Version"] = util.VERSION
|
|
infos["Up Time"] = util.FormatDuration(time.Now().Sub(startTime))
|
|
var ds []*stats.DiskStatus
|
|
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
|
|
Master string
|
|
Volumes interface{}
|
|
DiskStatuses interface{}
|
|
Stats interface{}
|
|
Counters *stats.ServerStats
|
|
}{
|
|
Version: util.VERSION,
|
|
Master: vs.GetMasterNode(),
|
|
Volumes: vs.store.Status(),
|
|
DiskStatuses: ds,
|
|
Stats: infos,
|
|
Counters: stats.ServStats,
|
|
}
|
|
ui.StatusTpl.Execute(w, args)
|
|
}
|