Add Initial Seaweed File System UI

This commit is contained in:
chrislusf
2015-03-19 10:39:22 -07:00
parent 6fc72b19bb
commit b75ca9890d
7 changed files with 232 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
package weed_server
import (
"net/http"
"github.com/chrislusf/weed-fs/go/util"
ui "github.com/chrislusf/weed-fs/go/weed/weed_server/master_ui"
)
func (ms *MasterServer) uiStatusHandler(w http.ResponseWriter, r *http.Request) {
stats := make(map[string]interface{})
stats["Version"] = util.VERSION
args := struct {
Version string
Topology interface{}
Peers interface{}
Stats interface{}
}{
util.VERSION,
ms.Topo.ToMap(),
ms.Topo.RaftServer.Peers(),
stats,
//serverStats,
}
ui.StatusTpl.Execute(w, args)
}