seaweedfs/weed/server/master_ui/templates.go

106 lines
3 KiB
Go
Raw Normal View History

2015-03-19 17:39:22 +00:00
package master_ui
import (
"html/template"
)
var StatusTpl = template.Must(template.New("status").Parse(`<!DOCTYPE html>
<html>
<head>
<title>SeaweedFS {{ .Version }}</title>
2018-10-08 04:42:57 +00:00
<link rel="stylesheet" href="/seaweedfsstatic/bootstrap/3.3.1/css/bootstrap.min.css">
2015-03-19 17:39:22 +00:00
</head>
<body>
<div class="container">
<div class="page-header">
2015-04-17 18:26:27 +00:00
<h1>
2018-12-27 22:43:36 +00:00
<a href="https://github.com/chrislusf/seaweedfs"><img src="/seaweedfsstatic/seaweed50x50.png"></img></a>
2015-04-17 18:26:27 +00:00
SeaweedFS <small>{{ .Version }}</small>
</h1>
2015-03-19 17:39:22 +00:00
</div>
<div class="row">
<div class="col-sm-6">
<h2>Cluster status</h2>
<table class="table">
<tbody>
<tr>
<th>Free</th>
<td>{{ .Topology.Free }}</td>
</tr>
<tr>
<th>Max</th>
<td>{{ .Topology.Max }}</td>
</tr>
{{ with .RaftServer }}
2015-03-24 17:52:14 +00:00
<tr>
<th>Leader</th>
<td><a href="http://{{ .Leader }}">{{ .Leader }}</a></td>
</tr>
2015-03-19 17:39:22 +00:00
<tr>
2018-07-19 08:46:18 +00:00
<td class="col-sm-2 field-label"><label>Other Masters:</label></td>
2015-03-19 17:39:22 +00:00
<td class="col-sm-10"><ul class="list-unstyled">
2015-03-24 07:09:20 +00:00
{{ range $k, $p := .Peers }}
<li><a href="http://{{ $p.Name }}/ui/index.html">{{ $p.Name }}</a></li>
2015-03-19 17:39:22 +00:00
{{ end }}
</ul></td>
</tr>
{{ end }}
2015-03-19 17:39:22 +00:00
</tbody>
</table>
</div>
<div class="col-sm-6">
<h2>System Stats</h2>
<table class="table table-condensed table-striped">
2015-03-22 19:50:04 +00:00
<tr>
<th>Concurrent Connections</th>
<td>{{ .Counters.Connections.WeekCounter.Sum }}</td>
2015-03-22 19:50:04 +00:00
</tr>
2015-03-19 17:39:22 +00:00
{{ range $key, $val := .Stats }}
<tr>
<th>{{ $key }}</th>
<td>{{ $val }}</td>
</tr>
{{ end }}
</table>
</div>
</div>
<div class="row">
<h2>Topology</h2>
<table class="table table-striped">
<thead>
<tr>
<th>Data Center</th>
<th>Rack</th>
<th>RemoteAddr</th>
<th>#Volumes</th>
2019-06-05 04:52:37 +00:00
<th>#ErasureCodingShards</th>
2015-03-19 17:39:22 +00:00
<th>Max</th>
</tr>
</thead>
<tbody>
{{ range $dc_index, $dc := .Topology.DataCenters }}
{{ range $rack_index, $rack := $dc.Racks }}
{{ range $dn_index, $dn := $rack.DataNodes }}
<tr>
<td><code>{{ $dc.Id }}</code></td>
<td>{{ $rack.Id }}</td>
<td><a href="http://{{ $dn.Url }}/ui/index.html">{{ $dn.Url }}</a></td>
<td>{{ $dn.Volumes }}</td>
2019-06-05 04:52:37 +00:00
<td>{{ $dn.EcShards }}</td>
2015-03-19 17:39:22 +00:00
<td>{{ $dn.Max }}</td>
</tr>
{{ end }}
{{ end }}
{{ end }}
</tbody>
</table>
</div>
</div>
</body>
</html>
`))