2015-03-19 17:39:22 +00:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"path/filepath"
|
2015-03-22 19:50:04 +00:00
|
|
|
"time"
|
2015-03-19 17:39:22 +00:00
|
|
|
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/stats"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
|
|
|
ui "github.com/chrislusf/seaweedfs/weed/server/volume_server_ui"
|
2015-03-19 17:39:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func (vs *VolumeServer) uiStatusHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
infos := make(map[string]interface{})
|
2015-03-22 19:50:04 +00:00
|
|
|
infos["Up Time"] = time.Now().Sub(startTime).String()
|
2015-03-19 17:39:22 +00:00
|
|
|
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{}
|
2015-03-22 19:50:04 +00:00
|
|
|
Counters *stats.ServerStats
|
2015-03-19 17:39:22 +00:00
|
|
|
}{
|
|
|
|
util.VERSION,
|
|
|
|
vs.masterNode,
|
|
|
|
vs.store.Status(),
|
|
|
|
ds,
|
|
|
|
infos,
|
2015-03-22 19:50:04 +00:00
|
|
|
serverStats,
|
2015-03-19 17:39:22 +00:00
|
|
|
}
|
|
|
|
ui.StatusTpl.Execute(w, args)
|
|
|
|
}
|