Browse Source

fix stats UI

pull/15/head
Jason 5 years ago
parent
commit
a2a8c6a960
  1. 2
      component/session/server.go
  2. 2
      component/session/utils.go

2
component/session/server.go

@ -98,7 +98,7 @@ table, th, td {
// Statistics table
_, _ = fmt.Fprintf(w, "<p>Statistics (%d)</p>", runtime.NumGoroutine())
_, _ = fmt.Fprintf(w, "<table style=\"border=4px solid\">")
_, _ = fmt.Fprintf(w, "<th>Platform</th><th>CPU</th><th>Mem</th><th>Disk</th><tr><th>Last Refresh Time</th><th>Uptime</th><th>Total</th><th>Upload</th><th>Download</th></tr>\n")
_, _ = fmt.Fprintf(w, "<tr><th>Platform</th><th>CPU</th><th>Mem</th><th>Disk</th><th>Last Refresh Time</th><th>Uptime</th><th>Total</th><th>Upload</th><th>Download</th></tr>\n")
trafficUp := atomic.LoadInt64(&s.trafficUp)
trafficDown := atomic.LoadInt64(&s.trafficDown)
_, _ = fmt.Fprintf(w, "<tr><td>%v</td><td>%v</td><td>%v</td><td>%v</td><td>%v</td><td>%v</td><td>%v</td><td>%v</td><td>%v</td></tr>\n",

2
component/session/utils.go

@ -38,7 +38,7 @@ func platform() string {
if err != nil {
return "N/A"
}
return fmt.Sprintf("%s-%s", h.Platform, h.PlatformVersion)
return fmt.Sprintf("%s", h.Platform)
}
func mem() string {

Loading…
Cancel
Save