41 lines
944 B
Go
41 lines
944 B
Go
package main
|
|
|
|
import (
|
|
"github.com/sqshq/sampler/config"
|
|
"github.com/sqshq/sampler/console"
|
|
"github.com/sqshq/sampler/data"
|
|
"github.com/sqshq/sampler/event"
|
|
"github.com/sqshq/sampler/widgets"
|
|
ui "github.com/sqshq/termui"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
|
|
cfg := config.Load("/Users/sqshq/Go/src/github.com/sqshq/sampler/config.yml")
|
|
csl := console.Console{}
|
|
csl.Init()
|
|
defer csl.Close()
|
|
|
|
width, height := ui.TerminalDimensions()
|
|
layout := widgets.NewLayout(width, height, widgets.NewMenu())
|
|
|
|
for _, c := range cfg.RunCharts {
|
|
|
|
chart := widgets.NewRunChart(c.Title, c.Precision, c.RefreshRateMs)
|
|
layout.AddComponent(chart, c.Title, c.Position, c.Size, widgets.TypeRunChart)
|
|
|
|
for _, item := range c.Items {
|
|
data.NewSampler(chart, item, c.RefreshRateMs)
|
|
}
|
|
}
|
|
|
|
handler := event.Handler{
|
|
Layout: layout,
|
|
RenderEvents: time.NewTicker(console.RenderRate).C,
|
|
ConsoleEvents: ui.PollEvents(),
|
|
}
|
|
|
|
handler.HandleEvents()
|
|
}
|