diff options
| author | yanyiwu <i@yanyiwu.com> | 2015-04-20 21:50:07 +0800 |
|---|---|---|
| committer | yanyiwu <i@yanyiwu.com> | 2015-04-20 21:50:07 +0800 |
| commit | c65b9588e2b47fba3485998aa7a449af46693bc2 (patch) | |
| tree | 8c754bb7b98306b1a3a13e6b71683ca7900b103f /go/weed | |
| parent | 9cd221cc3313a3414db9e8cfcd274f74ac85611a (diff) | |
| download | seaweedfs-c65b9588e2b47fba3485998aa7a449af46693bc2.tar.xz seaweedfs-c65b9588e2b47fba3485998aa7a449af46693bc2.zip | |
[ui] BUG FIXED: Concurrent Connections incorrect.
Diffstat (limited to 'go/weed')
| -rw-r--r-- | go/weed/weed_server/master_ui/templates.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/go/weed/weed_server/master_ui/templates.go b/go/weed/weed_server/master_ui/templates.go index 0e65f6a17..e9ee2d8d2 100644 --- a/go/weed/weed_server/master_ui/templates.go +++ b/go/weed/weed_server/master_ui/templates.go @@ -54,7 +54,7 @@ var StatusTpl = template.Must(template.New("status").Parse(`<!DOCTYPE html> <table class="table table-condensed table-striped"> <tr> <th>Concurrent Connections</th> - <td>{{ .Counters.Connections.WeekCounter.Count }}</td> + <td>{{ .Counters.Connections.WeekCounter.Sum }}</td> </tr> {{ range $key, $val := .Stats }} <tr> |
