mirror of https://github.com/shirou/gopsutil
implements String() which return as JSON to every structs.
parent
02a91378b8
commit
8098298111
@ -1,7 +1,16 @@
|
|||||||
package gopsutil
|
package gopsutil
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
)
|
||||||
|
|
||||||
type LoadAvgStat struct {
|
type LoadAvgStat struct {
|
||||||
Load1 float64 `json:"load1"`
|
Load1 float64 `json:"load1"`
|
||||||
Load5 float64 `json:"load5"`
|
Load5 float64 `json:"load5"`
|
||||||
Load15 float64 `json:"load15"`
|
Load15 float64 `json:"load15"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (l LoadAvgStat) String() string {
|
||||||
|
s, _ := json.Marshal(l)
|
||||||
|
return string(s)
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue