Skip to content

Commit

Permalink
follow name change
Browse files Browse the repository at this point in the history
  • Loading branch information
mtanda committed Apr 4, 2018
1 parent 61f8e7f commit 646d841
Showing 1 changed file with 19 additions and 14 deletions.
33 changes: 19 additions & 14 deletions types.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,25 @@ type CpuUtilization struct {
}

type DiskIO struct {
AvgQueueLen float64 `json:"avgQueueLen"`
AvgReqSz float64 `json:"avgReqSz"`
Await float64 `json:"await"`
Device string `json:"device"`
ReadIOsPS float64 `json:"readIOsPS"`
ReadKb float64 `json:"readKb"`
ReadKbPS float64 `json:"readKbPS"`
RrqmPS float64 `json:"rrqmPS"`
Tps float64 `json:"tps"`
Util float64 `json:"util"`
WriteIOsPS float64 `json:"writeIOsPS"`
WriteKb float64 `json:"writeKb"`
WriteKbPS float64 `json:"writeKbPS"`
WrqmPS float64 `json:"wrqmPS"`
AvgQueueLen float64 `json:"avgQueueLen"`
AvgReqSz float64 `json:"avgReqSz"`
Await float64 `json:"await"`
Device string `json:"device"`
ReadIOsPS float64 `json:"readIOsPS"`
ReadKb float64 `json:"readKb"`
ReadKbPS float64 `json:"readKbPS"`
RrqmPS float64 `json:"rrqmPS"`
Tps float64 `json:"tps"`
Util float64 `json:"util"`
WriteIOsPS float64 `json:"writeIOsPS"`
WriteKb float64 `json:"writeKb"`
WriteKbPS float64 `json:"writeKbPS"`
WrqmPS float64 `json:"wrqmPS"`
ReadLatency float64 `json:"readLatency"`
WriteLatency float64 `json:"writeLatency"`
ReadThroughput float64 `json:"readThroughput"`
WriteThroughput float64 `json:"writeThroughput"`
DiskQueueDepth float64 `json:"diskQueueDepth"`
}

type FileSys struct {
Expand Down

0 comments on commit 646d841

Please sign in to comment.