seaweedfs/weed/server/master_server_handlers_ui.go

31 lines
686 B
Go
Raw Normal View History

2015-03-19 17:39:22 +00:00
package weed_server
import (
"net/http"
"time"
2015-03-19 17:39:22 +00:00
"github.com/chrislusf/raft"
ui "github.com/chrislusf/seaweedfs/weed/server/master_ui"
"github.com/chrislusf/seaweedfs/weed/stats"
"github.com/chrislusf/seaweedfs/weed/util"
2015-03-19 17:39:22 +00:00
)
func (ms *MasterServer) uiStatusHandler(w http.ResponseWriter, r *http.Request) {
2015-03-22 19:50:04 +00:00
infos := make(map[string]interface{})
infos["Up Time"] = time.Now().Sub(startTime).String()
2015-03-19 17:39:22 +00:00
args := struct {
Version string
Topology interface{}
RaftServer raft.Server
Stats map[string]interface{}
Counters *stats.ServerStats
2015-03-19 17:39:22 +00:00
}{
2020-06-02 07:10:35 +00:00
util.Version(),
2015-03-19 17:39:22 +00:00
ms.Topo.ToMap(),
ms.Topo.RaftServer,
2015-03-22 19:50:04 +00:00
infos,
serverStats,
2015-03-19 17:39:22 +00:00
}
ui.StatusTpl.Execute(w, args)
}