mirror of
https://github.com/bcicen/ctop.git
synced 2024-08-30 18:23:19 +00:00
41 lines
684 B
Go
41 lines
684 B
Go
package widgets
|
|
|
|
import (
|
|
ui "github.com/gizak/termui"
|
|
)
|
|
|
|
type ExpandedMem struct {
|
|
*ui.BarChart
|
|
hist IntHist
|
|
}
|
|
|
|
func NewExpandedMem() *ExpandedMem {
|
|
mem := &ExpandedMem{
|
|
ui.NewBarChart(),
|
|
NewIntHist(8),
|
|
}
|
|
mem.BorderLabel = "MEM"
|
|
mem.Height = 10
|
|
mem.Width = 50
|
|
mem.BarWidth = 5
|
|
mem.BarGap = 1
|
|
mem.X = 0
|
|
mem.Y = 14
|
|
mem.TextColor = ui.ColorDefault
|
|
mem.Data = mem.hist.data
|
|
mem.BarColor = ui.ColorGreen
|
|
mem.DataLabels = mem.hist.labels
|
|
mem.NumFmt = byteFormatInt
|
|
return mem
|
|
}
|
|
|
|
func (w *ExpandedMem) Update(val int, limit int) {
|
|
// implement our own scaling for mem graph
|
|
if val*4 < limit {
|
|
w.SetMax(val * 4)
|
|
} else {
|
|
w.SetMax(limit)
|
|
}
|
|
w.hist.Append(val)
|
|
}
|