expvarmon/ui_single.go

115 lines
2.5 KiB
Go
Raw Normal View History

2015-05-03 02:17:51 +08:00
package main
import (
"fmt"
"github.com/divan/termui"
)
// TermUISingle is a termUI implementation of UI interface.
type TermUISingle struct {
Title *termui.Par
Status *termui.Par
Sparklines map[VarName]*termui.Sparkline
Sparkline *termui.Sparklines
}
// Init creates widgets, sets sizes and labels.
func (t *TermUISingle) Init(data UIData) error {
err := termui.Init()
if err != nil {
return err
}
t.Sparklines = make(map[VarName]*termui.Sparkline)
termui.UseTheme("helloworld")
t.Title = func() *termui.Par {
p := termui.NewPar("")
p.Height = 3
p.TextFgColor = termui.ColorWhite
p.Border.Label = "Services Monitor"
p.Border.FgColor = termui.ColorCyan
return p
}()
t.Status = func() *termui.Par {
p := termui.NewPar("")
p.Height = 3
p.TextFgColor = termui.ColorWhite
p.Border.Label = "Status"
p.Border.FgColor = termui.ColorCyan
return p
}()
2015-05-03 03:29:02 +08:00
var sparklines []termui.Sparkline
2015-05-03 02:17:51 +08:00
for _, name := range data.Vars {
2015-05-03 03:29:02 +08:00
spl := termui.NewSparkline()
spl.Height = 1
spl.TitleColor = colorByKind(name.Kind())
spl.LineColor = colorByKind(name.Kind())
spl.Title = name.Long()
sparklines = append(sparklines, spl)
2015-05-03 02:17:51 +08:00
}
t.Sparkline = func() *termui.Sparklines {
2015-05-03 03:29:02 +08:00
s := termui.NewSparklines(sparklines...)
s.Height = 2*len(sparklines) + 2
2015-05-03 02:17:51 +08:00
s.HasBorder = true
s.Border.Label = fmt.Sprintf("Monitoring")
return s
}()
termui.Body.AddRows(
termui.NewRow(
termui.NewCol(6, 0, t.Title),
termui.NewCol(6, 0, t.Status)),
termui.NewRow(termui.NewCol(12, 0, t.Sparkline)),
)
termui.Body.Align()
return nil
}
// Update updates UI widgets from UIData.
func (t *TermUISingle) Update(data UIData) {
// single mode assumes we have one service only to monitor
service := data.Services[0]
t.Title.Text = fmt.Sprintf("monitoring %s, press q to quit", service.Name)
t.Status.Text = fmt.Sprintf("Last update: %v", data.LastTimestamp.Format("15:04:05 02/Jan/06"))
// Sparklines
for i, name := range data.Vars {
spl := &t.Sparkline.Lines[i]
2015-05-03 03:29:02 +08:00
2015-05-03 03:39:39 +08:00
max := formatMax(service.Max(name))
spl.Title = fmt.Sprintf("%s: %v%s", name.Long(), service.Value(name), max)
2015-05-03 02:17:51 +08:00
spl.TitleColor = colorByKind(name.Kind())
spl.LineColor = colorByKind(name.Kind())
2015-05-03 03:48:27 +08:00
if name.Kind() == KindString {
continue
}
2015-05-03 02:17:51 +08:00
spl.Data = service.Values(name)
}
termui.Body.Width = termui.TermWidth()
termui.Body.Align()
termui.Render(termui.Body)
}
// Close shuts down UI module.
func (t *TermUISingle) Close() {
termui.Close()
}
2015-05-03 03:39:39 +08:00
func formatMax(max interface{}) string {
var str string
if max != nil {
str = fmt.Sprintf(" (max: %v)", max)
}
return str
}