fix format of internal node URLs in master UI templates
This commit is contained in:
@@ -1,121 +1,124 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<title>SeaweedFS {{ .Version }}</title>
|
<title>SeaweedFS {{ .Version }}</title>
|
||||||
<link rel="stylesheet" href="/seaweedfsstatic/bootstrap/3.3.1/css/bootstrap.min.css">
|
<link rel="stylesheet" href="/seaweedfsstatic/bootstrap/3.3.1/css/bootstrap.min.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
|
||||||
<div class="container">
|
|
||||||
<div class="page-header">
|
|
||||||
<h1>
|
|
||||||
<a href="https://github.com/seaweedfs/seaweedfs"><img src="/seaweedfsstatic/seaweed50x50.png"></img></a>
|
|
||||||
SeaweedFS <small>{{ .Version }}</small>
|
|
||||||
</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
<body>
|
||||||
<div class="col-sm-6">
|
<div class="container">
|
||||||
<h2>Cluster status</h2>
|
<div class="page-header">
|
||||||
<table class="table table-condensed table-striped">
|
<h1>
|
||||||
|
<a href="https://github.com/seaweedfs/seaweedfs"><img src="/seaweedfsstatic/seaweed50x50.png"></img></a>
|
||||||
|
SeaweedFS <small>{{ .Version }}</small>
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-sm-6">
|
||||||
|
<h2>Cluster status</h2>
|
||||||
|
<table class="table table-condensed table-striped">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<th>Volume Size Limit</th>
|
||||||
|
<td>{{ .VolumeSizeLimitMB }}MB</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Free</th>
|
||||||
|
<td>{{ .Topology.Free }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Max</th>
|
||||||
|
<td>{{ .Topology.Max }}</td>
|
||||||
|
</tr>
|
||||||
|
{{ with .RaftServer }}
|
||||||
|
<tr>
|
||||||
|
<th>Leader</th>
|
||||||
|
<td><a href="{{ url .Leader }}">{{ .Leader }}</a></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Other Masters</th>
|
||||||
|
<td class="col-sm-5">
|
||||||
|
<ul class="list-unstyled">
|
||||||
|
{{ range $k, $p := .GetConfiguration.Configuration.Servers }}
|
||||||
|
<li><a href="{{ url $p.ID }}/ui/index.html">{{ $p.ID }}</a></li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
{{ end }}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-sm-6">
|
||||||
|
<h2>System Stats</h2>
|
||||||
|
<table class="table table-condensed table-striped">
|
||||||
|
<tr>
|
||||||
|
<th>Concurrent Connections</th>
|
||||||
|
<td>{{ .Counters.Connections.WeekCounter.Sum }}</td>
|
||||||
|
</tr>
|
||||||
|
{{ range $key, $val := .Stats }}
|
||||||
|
<tr>
|
||||||
|
<th>{{ $key }}</th>
|
||||||
|
<td>{{ $val }}</td>
|
||||||
|
</tr>
|
||||||
|
{{ end }}
|
||||||
|
</table>
|
||||||
|
<h2>Raft Stats</h2>
|
||||||
|
<table class="table table-condensed table-striped">
|
||||||
|
<tr>
|
||||||
|
<th>applied_index</th>
|
||||||
|
<td>{{ .RaftServer.Stats.applied_index }}</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>last_log_term</th>
|
||||||
|
<td>{{ .RaftServer.Stats.last_log_term }}</td>
|
||||||
|
</tr>
|
||||||
|
</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>
|
||||||
|
<th>Volume Ids</th>
|
||||||
|
<th>#ErasureCodingShards</th>
|
||||||
|
<th>Max</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
{{ range $dc_index, $dc := .Topology.DataCenters }}
|
||||||
<th>Volume Size Limit</th>
|
{{ range $rack_index, $rack := $dc.Racks }}
|
||||||
<td>{{ .VolumeSizeLimitMB }}MB</td>
|
{{ range $dn_index, $dn := $rack.DataNodes }}
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td><code>{{ $dc.Id }}</code></td>
|
||||||
<th>Free</th>
|
<td>{{ $rack.Id }}</td>
|
||||||
<td>{{ .Topology.Free }}</td>
|
<td><a href="{{ url $dn.Url }}/ui/index.html">{{ $dn.Url }}</a>
|
||||||
</tr>
|
{{ if ne $dn.PublicUrl $dn.Url }}
|
||||||
<tr>
|
/ <a href="{{ url $dn.PublicUrl }}/ui/index.html">{{ $dn.PublicUrl }}</a>
|
||||||
<th>Max</th>
|
|
||||||
<td>{{ .Topology.Max }}</td>
|
|
||||||
</tr>
|
|
||||||
{{ with .RaftServer }}
|
|
||||||
<tr>
|
|
||||||
<th>Leader</th>
|
|
||||||
<td><a href="http://{{ .Leader }}">{{ .Leader }}</a></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>Other Masters</th>
|
|
||||||
<td class="col-sm-5">
|
|
||||||
<ul class="list-unstyled">
|
|
||||||
{{ range $k, $p := .GetConfiguration.Configuration.Servers }}
|
|
||||||
<li><a href="http://{{ $p.ID }}/ui/index.html">{{ $p.ID }}</a></li>
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</td>
|
||||||
</td>
|
<td>{{ $dn.Volumes }}</td>
|
||||||
</tr>
|
<td>{{ $dn.VolumeIds}}</td>
|
||||||
{{ end }}
|
<td>{{ $dn.EcShards }}</td>
|
||||||
|
<td>{{ $dn.Max }}</td>
|
||||||
|
</tr>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-sm-6">
|
|
||||||
<h2>System Stats</h2>
|
|
||||||
<table class="table table-condensed table-striped">
|
|
||||||
<tr>
|
|
||||||
<th>Concurrent Connections</th>
|
|
||||||
<td>{{ .Counters.Connections.WeekCounter.Sum }}</td>
|
|
||||||
</tr>
|
|
||||||
{{ range $key, $val := .Stats }}
|
|
||||||
<tr>
|
|
||||||
<th>{{ $key }}</th>
|
|
||||||
<td>{{ $val }}</td>
|
|
||||||
</tr>
|
|
||||||
{{ end }}
|
|
||||||
</table>
|
|
||||||
<h2>Raft Stats</h2>
|
|
||||||
<table class="table table-condensed table-striped">
|
|
||||||
<tr>
|
|
||||||
<th>applied_index</th>
|
|
||||||
<td>{{ .RaftServer.Stats.applied_index }}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<th>last_log_term</th>
|
|
||||||
<td>{{ .RaftServer.Stats.last_log_term }}</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</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>
|
|
||||||
<th>Volume Ids</th>
|
|
||||||
<th>#ErasureCodingShards</th>
|
|
||||||
<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>
|
|
||||||
{{ if ne $dn.PublicUrl $dn.Url }}
|
|
||||||
/ <a href="http://{{ $dn.PublicUrl }}/ui/index.html">{{ $dn.PublicUrl }}</a>
|
|
||||||
{{ end }}
|
|
||||||
</td>
|
|
||||||
<td>{{ $dn.Volumes }}</td>
|
|
||||||
<td>{{ $dn.VolumeIds}}</td>
|
|
||||||
<td>{{ $dn.EcShards }}</td>
|
|
||||||
<td>{{ $dn.Max }}</td>
|
|
||||||
</tr>
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
@@ -4,6 +4,8 @@ import (
|
|||||||
_ "embed"
|
_ "embed"
|
||||||
"html/template"
|
"html/template"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"github.com/seaweedfs/seaweedfs/weed/pb"
|
||||||
)
|
)
|
||||||
|
|
||||||
//go:embed master.html
|
//go:embed master.html
|
||||||
@@ -16,7 +18,7 @@ var templateFunctions = template.FuncMap{
|
|||||||
"url": func(input string) string {
|
"url": func(input string) string {
|
||||||
|
|
||||||
if !strings.HasPrefix(input, "http://") && !strings.HasPrefix(input, "https://") {
|
if !strings.HasPrefix(input, "http://") && !strings.HasPrefix(input, "https://") {
|
||||||
return "http://" + input
|
return "http://" + pb.ServerAddress(input).ToHttpAddress()
|
||||||
}
|
}
|
||||||
|
|
||||||
return input
|
return input
|
||||||
@@ -25,4 +27,4 @@ var templateFunctions = template.FuncMap{
|
|||||||
|
|
||||||
var StatusTpl = template.Must(template.New("status").Funcs(templateFunctions).Parse(masterHtml))
|
var StatusTpl = template.Must(template.New("status").Funcs(templateFunctions).Parse(masterHtml))
|
||||||
|
|
||||||
var StatusNewRaftTpl = template.Must(template.New("status").Parse(masterNewRaftHtml))
|
var StatusNewRaftTpl = template.Must(template.New("status").Funcs(templateFunctions).Parse(masterNewRaftHtml))
|
||||||
|
|||||||
Reference in New Issue
Block a user