clustvirt/lib/host/charts.go

32 lines
837 B
Go
Raw Normal View History

2024-03-16 17:09:58 +00:00
package host
import (
"log"
2024-03-16 17:09:58 +00:00
"strings"
"github.com/wcharczuk/go-chart/v2"
)
// This file contains utilities to create charts based on the different data
// When a chart is rendered, it can return either an SVG or PNG. SVG is preferrable.
func (h *Host) ChartMemory() string {
h.getNodeInfo()
log.Println("Generating Chart")
2024-03-16 17:09:58 +00:00
c := chart.PieChart{
Width: 128,
Height: 128,
2024-03-16 17:09:58 +00:00
Values: []chart.Value{
{Value: float64(h.NodeMemory.Free) / float64(h.NodeMemory.Total), Label: "Free"},
{Value: float64(h.NodeMemory.Cached) / float64(h.NodeMemory.Total), Label: "Cached"},
{Value: float64(h.NodeMemory.Buffers) / float64(h.NodeMemory.Total), Label: "Buffers"},
2024-03-16 17:09:58 +00:00
},
}
sb := new(strings.Builder)
log.Println("Rendering chart")
if err := c.Render(chart.SVG, sb); err != nil {
return err.Error()
}
2024-03-16 17:09:58 +00:00
return sb.String()
}