2015-03-19 17:39:22 +00:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2020-04-23 20:37:31 +00:00
|
|
|
"time"
|
2015-03-19 17:39:22 +00:00
|
|
|
|
2017-07-04 05:35:28 +00:00
|
|
|
"github.com/chrislusf/raft"
|
|
|
|
ui "github.com/chrislusf/seaweedfs/weed/server/master_ui"
|
2016-06-03 01:09:14 +00:00
|
|
|
"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{})
|
2020-04-23 20:37:31 +00:00
|
|
|
infos["Up Time"] = time.Now().Sub(startTime).String()
|
2015-03-19 17:39:22 +00:00
|
|
|
args := struct {
|
2021-04-22 21:22:46 +00:00
|
|
|
Version string
|
|
|
|
Topology interface{}
|
|
|
|
RaftServer raft.Server
|
|
|
|
Stats map[string]interface{}
|
|
|
|
Counters *stats.ServerStats
|
2021-08-13 00:54:34 +00:00
|
|
|
VolumeSizeLimitMB uint32
|
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(),
|
2017-07-04 05:35:28 +00:00
|
|
|
ms.Topo.RaftServer,
|
2015-03-22 19:50:04 +00:00
|
|
|
infos,
|
|
|
|
serverStats,
|
2021-04-22 21:22:46 +00:00
|
|
|
ms.option.VolumeSizeLimitMB,
|
2015-03-19 17:39:22 +00:00
|
|
|
}
|
|
|
|
ui.StatusTpl.Execute(w, args)
|
|
|
|
}
|