Documentation
¶
Overview ¶
Package diskusage calculates IO usage the of block devices. Usage is calculated by taking the difference between tow snapshots of IO statistics of block devices, /proc/diskstats. The time elapsed between the two snapshots is stored in the TimeDelta field. Instead of returning a Go struct, it returns JSON serialized bytes. A function to deserialize the JSON serialized bytes into a struct.DiskUsage struct is provided.
Note: the package name is diskusage and not the final element of the import path (json).
Index ¶
- func Deserialize(p []byte) (*structs.DiskUsage, error)
- func Get() (p []byte, err error)
- func Marshal(u *structs.DiskUsage) ([]byte, error)
- func NewTicker(d time.Duration) (joe.Tocker, error)
- func Serialize(u *structs.DiskUsage) (p []byte, err error)
- func Unmarshal(p []byte) (*structs.DiskUsage, error)
- type Profiler
- type Ticker
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Deserialize ¶
Deserialize takes some JSON serialized bytes and unmarshals them as structs.DiskUsage.
func Get ¶
Get returns the current IO usage of the block devices as JSON serialized bytes using the package's global Profiler. The Profiler is instantiated lazily. If the profiler doesn't already exist, the first utilization information will not be useful due to minimal time elapsing between the initial and second snapshots used for utilization calculations; the results of the first call should be discarded.
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.
Types ¶
type Profiler ¶
Profiler is used to process IO usage of the block devices using JSON.
func NewProfiler ¶
Returns an initialized Profiler; ready to use. Upon creation, a /proc/diskstats snapshot is taken so that any Get() will return valid information.
func (*Profiler) Get ¶
Get returns the current IO usage of the block devices as JSON serialized bytes. Calculating usage requires two snapshots. This func gets the current snapshot of /proc/diskstats and calculates the difference between that and the prior snapshot. The current snapshot is stored for use as the prior snapshot on the next Get call. If ongoing usage information is desired, the Ticker should be used; it's better suited for ongoing usage information.