mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-08 06:01:12 +02:00
Instead of doing excessive get/list requests, do a watch per node in an infinite retry. Additionally, refactor the dashboard code to make the various data listener namings more consistent and reorganize the packages. Closes siderolabs/talos#6960. Signed-off-by: Utku Ozdemir <utku.ozdemir@siderolabs.com>
77 lines
2.0 KiB
Go
77 lines
2.0 KiB
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package components
|
|
|
|
import (
|
|
ui "github.com/gizak/termui/v3"
|
|
"github.com/gizak/termui/v3/widgets"
|
|
|
|
"github.com/siderolabs/talos/internal/pkg/dashboard/apidata"
|
|
)
|
|
|
|
// BaseSparklineGroup represents the widget with some sparklines.
|
|
type BaseSparklineGroup struct {
|
|
widgets.SparklineGroup
|
|
|
|
dataLabels []string
|
|
}
|
|
|
|
// NewBaseSparklineGroup initializes BaseSparklineGroup.
|
|
func NewBaseSparklineGroup(title string, labels, dataLabels []string) *BaseSparklineGroup {
|
|
sparklines := make([]*widgets.Sparkline, len(labels))
|
|
|
|
for i := range sparklines {
|
|
sparklines[i] = widgets.NewSparkline()
|
|
sparklines[i].Title = labels[i]
|
|
sparklines[i].Data = []float64{0, 0}
|
|
sparklines[i].LineColor = ui.Theme.Plot.Lines[i]
|
|
}
|
|
|
|
widget := &BaseSparklineGroup{
|
|
SparklineGroup: *widgets.NewSparklineGroup(sparklines...),
|
|
dataLabels: dataLabels,
|
|
}
|
|
|
|
widget.Border = false
|
|
widget.Title = title
|
|
|
|
return widget
|
|
}
|
|
|
|
// OnAPIDataChange implements the APIDataListener interface.
|
|
func (widget *BaseSparklineGroup) OnAPIDataChange(node string, data *apidata.Data) {
|
|
nodeData := data.Nodes[node]
|
|
|
|
if nodeData == nil {
|
|
for i := range widget.Sparklines {
|
|
widget.Sparklines[i].Data = []float64{0, 0}
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
width := widget.Inner.Dx()
|
|
|
|
for i, name := range widget.dataLabels {
|
|
series := nodeData.Series[name]
|
|
|
|
if len(series) < width {
|
|
width = len(series)
|
|
}
|
|
|
|
widget.Sparklines[i].Data = series[len(series)-width:]
|
|
}
|
|
}
|
|
|
|
// NewNetSparkline creates network sparkline.
|
|
func NewNetSparkline() *BaseSparklineGroup {
|
|
return NewBaseSparklineGroup("NET", []string{"RX", "TX"}, []string{"netrxbytes", "nettxbytes"})
|
|
}
|
|
|
|
// NewDiskSparkline creates disk sparkline.
|
|
func NewDiskSparkline() *BaseSparklineGroup {
|
|
return NewBaseSparklineGroup("DISK", []string{"READ", "WRITE"}, []string{"diskrdsectors", "diskwrsectors"})
|
|
}
|