aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-06-24 23:30:00 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-06-24 23:34:05 +0800
commit92ef33d97a437dce2d7b55f06342de388d95f575 (patch)
treecf184042cb7f4de51c3f11f94bef785eff52bee7 /cmd
parent302187ae397c5e06a9f086183d55f591f5daf588 (diff)
downloadgo-tangerine-92ef33d97a437dce2d7b55f06342de388d95f575.tar
go-tangerine-92ef33d97a437dce2d7b55f06342de388d95f575.tar.gz
go-tangerine-92ef33d97a437dce2d7b55f06342de388d95f575.tar.bz2
go-tangerine-92ef33d97a437dce2d7b55f06342de388d95f575.tar.lz
go-tangerine-92ef33d97a437dce2d7b55f06342de388d95f575.tar.xz
go-tangerine-92ef33d97a437dce2d7b55f06342de388d95f575.tar.zst
go-tangerine-92ef33d97a437dce2d7b55f06342de388d95f575.zip
rpc/api, cmd/geth: retrievel all percentiles, add time units
Diffstat (limited to 'cmd')
-rw-r--r--cmd/geth/monitorcmd.go17
1 files changed, 13 insertions, 4 deletions
diff --git a/cmd/geth/monitorcmd.go b/cmd/geth/monitorcmd.go
index ec0dfb8f2..53eb61a46 100644
--- a/cmd/geth/monitorcmd.go
+++ b/cmd/geth/monitorcmd.go
@@ -76,7 +76,10 @@ func monitor(ctx *cli.Context) {
termui.UseTheme("helloworld")
- rows := 5
+ rows := len(monitored)
+ if rows > 5 {
+ rows = 5
+ }
cols := (len(monitored) + rows - 1) / rows
for i := 0; i < rows; i++ {
termui.Body.AddRows(termui.NewRow())
@@ -207,8 +210,9 @@ func expandMetrics(metrics map[string]interface{}, path string) []string {
// updateChart inserts a dataset into a line chart, scaling appropriately as to
// not display weird labels, also updating the chart label accordingly.
func updateChart(metric string, data []float64, chart *termui.LineChart) {
- units := []string{"", "K", "M", "G", "T", "E", "P"}
- colors := []termui.Attribute{termui.ColorBlue, termui.ColorCyan, termui.ColorGreen, termui.ColorYellow, termui.ColorRed, termui.ColorRed, termui.ColorRed}
+ dataUnits := []string{"", "K", "M", "G", "T", "E"}
+ timeUnits := []string{"ns", "µs", "ms", "s", "ks", "ms"}
+ colors := []termui.Attribute{termui.ColorBlue, termui.ColorCyan, termui.ColorGreen, termui.ColorYellow, termui.ColorRed, termui.ColorRed}
// Find the maximum value and scale under 1K
high := data[0]
@@ -225,7 +229,12 @@ func updateChart(metric string, data []float64, chart *termui.LineChart) {
}
// Update the chart's label with the scale units
chart.Border.Label = metric
- if unit > 0 {
+
+ units := dataUnits
+ if strings.Contains(metric, "Percentiles") {
+ units = timeUnits
+ }
+ if len(units[unit]) > 0 {
chart.Border.Label += " [" + units[unit] + "]"
}
chart.LineColor = colors[unit]