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.
33 lines
825 B
33 lines
825 B
package weedserver
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/stats"
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
|
ui "github.com/chrislusf/seaweedfs/weed/weedserver/master_ui"
|
|
)
|
|
|
|
func (ms *MasterServer) 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))
|
|
args := struct {
|
|
Version string
|
|
Topology interface{}
|
|
Leader string
|
|
Peers interface{}
|
|
Stats map[string]interface{}
|
|
Counters *stats.ServerStats
|
|
}{
|
|
Version: util.VERSION,
|
|
Topology: ms.Topo.ToMap(),
|
|
Leader: ms.Topo.GetRaftServer().Leader(),
|
|
Peers: ms.Topo.GetRaftServer().Peers(),
|
|
Stats: infos,
|
|
Counters: stats.ServStats,
|
|
}
|
|
ui.StatusTpl.Execute(w, args)
|
|
}
|