mirror of https://github.com/shirou/gopsutil
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
676 B
Go
35 lines
676 B
Go
// SPDX-License-Identifier: BSD-3-Clause
|
|
package load
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/shirou/gopsutil/v4/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)
|
|
}
|