Documentation ¶
Overview ¶
Package load collects system load metrics from the host OS.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type MetricSet ¶
type MetricSet struct { mb.BaseMetricSet // contains filtered or unexported fields }
MetricSet type defines all fields of the MetricSet As a minimum it must inherit the mb.BaseMetricSet fields, but can be extended with additional entries. These variables can be used to persist data or configuration between multiple fetch calls.
type SystemLoad ¶
type SystemLoad struct { Load1 float64 `json:"load1"` Load5 float64 `json:"load5"` Load15 float64 `json:"load15"` /* normalized values load / cores */ LoadNorm1 float64 `json:"load1_norm"` LoadNorm5 float64 `json:"load5_norm"` LoadNorm15 float64 `json:"load15_norm"` }
func GetSystemLoad ¶
func GetSystemLoad() (*SystemLoad, error)
Click to show internal directories.
Click to hide internal directories.