cmd/geth: update monitor to new termui code
This commit is contained in:
parent
b019f3ee29
commit
d6c6bcc9f3
@ -105,8 +105,6 @@ func monitor(ctx *cli.Context) {
|
|||||||
}
|
}
|
||||||
defer termui.Close()
|
defer termui.Close()
|
||||||
|
|
||||||
termui.UseTheme("helloworld")
|
|
||||||
|
|
||||||
rows := len(monitored)
|
rows := len(monitored)
|
||||||
if max := ctx.Int(monitorCommandRowsFlag.Name); rows > max {
|
if max := ctx.Int(monitorCommandRowsFlag.Name); rows > max {
|
||||||
rows = max
|
rows = max
|
||||||
@ -117,7 +115,7 @@ func monitor(ctx *cli.Context) {
|
|||||||
}
|
}
|
||||||
// Create each individual data chart
|
// Create each individual data chart
|
||||||
footer := termui.NewPar("")
|
footer := termui.NewPar("")
|
||||||
footer.HasBorder = true
|
footer.Block.Border = true
|
||||||
footer.Height = 3
|
footer.Height = 3
|
||||||
|
|
||||||
charts := make([]*termui.LineChart, len(monitored))
|
charts := make([]*termui.LineChart, len(monitored))
|
||||||
@ -135,28 +133,27 @@ func monitor(ctx *cli.Context) {
|
|||||||
termui.Render(termui.Body)
|
termui.Render(termui.Body)
|
||||||
|
|
||||||
// Watch for various system events, and periodically refresh the charts
|
// Watch for various system events, and periodically refresh the charts
|
||||||
refresh := time.Tick(time.Duration(ctx.Int(monitorCommandRefreshFlag.Name)) * time.Second)
|
termui.Handle("/sys/kbd/C-c", func(termui.Event) {
|
||||||
for {
|
termui.StopLoop()
|
||||||
select {
|
})
|
||||||
case event := <-termui.EventCh():
|
termui.Handle("/sys/wnd/resize", func(termui.Event) {
|
||||||
if event.Type == termui.EventKey && event.Key == termui.KeyCtrlC {
|
termui.Body.Width = termui.TermWidth()
|
||||||
return
|
for _, chart := range charts {
|
||||||
}
|
chart.Height = (termui.TermHeight() - footer.Height) / rows
|
||||||
if event.Type == termui.EventResize {
|
}
|
||||||
termui.Body.Width = termui.TermWidth()
|
termui.Body.Align()
|
||||||
for _, chart := range charts {
|
termui.Render(termui.Body)
|
||||||
chart.Height = (termui.TermHeight() - footer.Height) / rows
|
})
|
||||||
}
|
go func() {
|
||||||
termui.Body.Align()
|
tick := time.NewTicker(time.Duration(ctx.Int(monitorCommandRefreshFlag.Name)) * time.Second)
|
||||||
termui.Render(termui.Body)
|
for range tick.C {
|
||||||
}
|
|
||||||
case <-refresh:
|
|
||||||
if refreshCharts(client, monitored, data, units, charts, ctx, footer) {
|
if refreshCharts(client, monitored, data, units, charts, ctx, footer) {
|
||||||
termui.Body.Align()
|
termui.Body.Align()
|
||||||
}
|
}
|
||||||
termui.Render(termui.Body)
|
termui.Render(termui.Body)
|
||||||
}
|
}
|
||||||
}
|
}()
|
||||||
|
termui.Loop()
|
||||||
}
|
}
|
||||||
|
|
||||||
// retrieveMetrics contacts the attached geth node and retrieves the entire set
|
// retrieveMetrics contacts the attached geth node and retrieves the entire set
|
||||||
@ -328,9 +325,9 @@ func updateChart(metric string, data []float64, base *int, chart *termui.LineCha
|
|||||||
if strings.Contains(metric, "/Percentiles/") || strings.Contains(metric, "/pauses/") || strings.Contains(metric, "/time/") {
|
if strings.Contains(metric, "/Percentiles/") || strings.Contains(metric, "/pauses/") || strings.Contains(metric, "/time/") {
|
||||||
units = timeUnits
|
units = timeUnits
|
||||||
}
|
}
|
||||||
chart.Border.Label = metric
|
chart.BorderLabel = metric
|
||||||
if len(units[unit]) > 0 {
|
if len(units[unit]) > 0 {
|
||||||
chart.Border.Label += " [" + units[unit] + "]"
|
chart.BorderLabel += " [" + units[unit] + "]"
|
||||||
}
|
}
|
||||||
chart.LineColor = colors[unit] | termui.AttrBold
|
chart.LineColor = colors[unit] | termui.AttrBold
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -350,8 +347,8 @@ func createChart(height int) *termui.LineChart {
|
|||||||
chart.AxesColor = termui.ColorWhite
|
chart.AxesColor = termui.ColorWhite
|
||||||
chart.PaddingBottom = -2
|
chart.PaddingBottom = -2
|
||||||
|
|
||||||
chart.Border.LabelFgColor = chart.Border.FgColor | termui.AttrBold
|
chart.BorderLabelFg = chart.BorderFg | termui.AttrBold
|
||||||
chart.Border.FgColor = chart.Border.BgColor
|
chart.BorderFg = chart.BorderBg
|
||||||
|
|
||||||
return chart
|
return chart
|
||||||
}
|
}
|
||||||
@ -361,7 +358,7 @@ func updateFooter(ctx *cli.Context, err error, footer *termui.Par) {
|
|||||||
// Generate the basic footer
|
// Generate the basic footer
|
||||||
refresh := time.Duration(ctx.Int(monitorCommandRefreshFlag.Name)) * time.Second
|
refresh := time.Duration(ctx.Int(monitorCommandRefreshFlag.Name)) * time.Second
|
||||||
footer.Text = fmt.Sprintf("Press Ctrl+C to quit. Refresh interval: %v.", refresh)
|
footer.Text = fmt.Sprintf("Press Ctrl+C to quit. Refresh interval: %v.", refresh)
|
||||||
footer.TextFgColor = termui.Theme().ParTextFg | termui.AttrBold
|
footer.TextFgColor = termui.ThemeAttr("par.fg") | termui.AttrBold
|
||||||
|
|
||||||
// Append any encountered errors
|
// Append any encountered errors
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user