Documentation ¶
Overview ¶
Package cpustats handles Flatbuffer based processing of kernel activity, /proc/stat. The first Stats.CPU element aggregates the values for all other CPU elements. The values are aggregated since system boot. Instead of returning a Go struct, it returns Flatbuffer serialized bytes. A function to deserialize the Flatbuffer serialized bytes into a cpustats.CPUStats struct is provided.
Note: the package name is cpustats and not the final element of the import path (flat).
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Deserialize ¶
Deserialize takes some Flatbuffer serialized bytes and deserializes them as cpustats.CPUStats.
func Get ¶
Get returns information about current kernel activity as Flatbuffer serialized bytes using the package's global Profiler.
func NewTicker ¶
NewTicker returns a new Ticker containing a Data channel that delivers the data at intervals and an error channel that delivers any errors encountered. Stop the ticker to signal the ticker to stop running. Stopping the ticker does not close the Data channel; call Close to close both the ticker and the data channel.