xmtop/widgets/net.go
2018-03-29 15:48:43 -07:00

99 lines
2.1 KiB
Go

package widgets
import (
"fmt"
"time"
"github.com/cjbassi/gotop/utils"
ui "github.com/cjbassi/termui"
psNet "github.com/shirou/gopsutil/net"
)
type Net struct {
*ui.Sparklines
interval time.Duration
// used to calculate recent network activity
recvTotal uint64
sentTotal uint64
}
func NewNet() *Net {
recv := ui.NewSparkline()
recv.Data = []int{0}
sent := ui.NewSparkline()
sent.Data = []int{0}
spark := ui.NewSparklines(recv, sent)
self := &Net{
Sparklines: spark,
interval: time.Second,
}
self.Label = "Network Usage"
go self.update()
ticker := time.NewTicker(self.interval)
go func() {
for range ticker.C {
self.update()
}
}()
return self
}
func (self *Net) update() {
// `false` causes psutil to group all network activity
interfaces, _ := psNet.IOCounters(false)
recvTotal := interfaces[0].BytesRecv
sentTotal := interfaces[0].BytesSent
if self.recvTotal != 0 { // if this isn't the first update
recvRecent := recvTotal - self.recvTotal
sentRecent := sentTotal - self.sentTotal
self.Lines[0].Data = append(self.Lines[0].Data, int(recvRecent))
self.Lines[1].Data = append(self.Lines[1].Data, int(sentRecent))
}
// used in later calls to update
self.recvTotal = recvTotal
self.sentTotal = sentTotal
// renders net widget titles
for i := 0; i < 2; i++ {
var method string // either 'Rx' or 'Tx'
var total float64
recent := self.Lines[i].Data[len(self.Lines[i].Data)-1]
unitTotal := "B"
unitRecent := "B"
if i == 0 {
total = float64(recvTotal)
method = "Rx"
} else {
total = float64(sentTotal)
method = "Tx"
}
if recent >= 1000000 {
recent = int(utils.BytesToMB(uint64(recent)))
unitRecent = "MB"
} else if recent >= 1000 {
recent = int(utils.BytesToKB(uint64(recent)))
unitRecent = "kB"
}
if total >= 1000000000 {
total = utils.BytesToGB(uint64(total))
unitTotal = "GB"
} else if total >= 1000000 {
total = utils.BytesToMB(uint64(total))
unitTotal = "MB"
}
self.Lines[i].Title1 = fmt.Sprintf(" Total %s: %5.1f %s", method, total, unitTotal)
self.Lines[i].Title2 = fmt.Sprintf(" %s/s: %9d %2s/s", method, recent, unitRecent)
}
}