mirror of
https://github.com/bcicen/ctop.git
synced 2024-08-30 18:23:19 +00:00
61 lines
944 B
Go
61 lines
944 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Log struct {
|
|
Timestamp time.Time
|
|
Message string
|
|
}
|
|
|
|
type Meta map[string]string
|
|
|
|
// NewMeta returns an initialized Meta map.
|
|
// An optional series of key, values may be provided to populate the map prior to returning
|
|
func NewMeta(kvs ...string) Meta {
|
|
m := make(Meta)
|
|
|
|
var k string
|
|
for i := 0; i < len(kvs)-1; i++ {
|
|
if k == "" {
|
|
k = kvs[i]
|
|
} else {
|
|
m[k] = kvs[i]
|
|
k = ""
|
|
}
|
|
}
|
|
|
|
return m
|
|
}
|
|
|
|
func (m Meta) Get(k string) string {
|
|
if s, ok := m[k]; ok {
|
|
return s
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Metrics struct {
|
|
CPUUtil int
|
|
NetTx int64
|
|
NetRx int64
|
|
MemLimit int64
|
|
MemPercent int
|
|
MemUsage int64
|
|
IOBytesRead int64
|
|
IOBytesWrite int64
|
|
Pids int
|
|
}
|
|
|
|
func NewMetrics() Metrics {
|
|
return Metrics{
|
|
CPUUtil: -1,
|
|
NetTx: -1,
|
|
NetRx: -1,
|
|
MemUsage: -1,
|
|
MemPercent: -1,
|
|
IOBytesRead: -1,
|
|
IOBytesWrite: -1,
|
|
Pids: -1,
|
|
}
|
|
}
|