34 lines
635 B
Go
34 lines
635 B
Go
package load
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/shirou/gopsutil/v3/internal/common"
|
|
)
|
|
|
|
var invoke common.Invoker = common.Invoke{}
|
|
|
|
type AvgStat struct {
|
|
Load1 float64 `json:"load1"`
|
|
Load5 float64 `json:"load5"`
|
|
Load15 float64 `json:"load15"`
|
|
}
|
|
|
|
func (l AvgStat) String() string {
|
|
s, _ := json.Marshal(l)
|
|
return string(s)
|
|
}
|
|
|
|
type MiscStat struct {
|
|
ProcsTotal int `json:"procsTotal"`
|
|
ProcsCreated int `json:"procsCreated"`
|
|
ProcsRunning int `json:"procsRunning"`
|
|
ProcsBlocked int `json:"procsBlocked"`
|
|
Ctxt int `json:"ctxt"`
|
|
}
|
|
|
|
func (m MiscStat) String() string {
|
|
s, _ := json.Marshal(m)
|
|
return string(s)
|
|
}
|