Skip to content

Commit

Permalink
Add disk
Browse files Browse the repository at this point in the history
  • Loading branch information
mrunge committed Sep 18, 2020
1 parent 31261e1 commit 8cec2fb
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,32 @@ forever.

### disk

The Disk plugin collects performance statistics of hard-disks and, where
supported, partitions. While the “octets” and “operations” are quite straight
forward, the other two datasets need a little explanation:

* “merged” are the number of operations, that could be merged into other,
already queued operations, i. e. one physical disk access served two
or more logical operations. Of course, the higher that number, the better.

* “time” is the average time an I/O-operation took to complete. Since this is
a little messy to calculate take the actual values with a grain of salt.

* “io_time” - time spent doing I/Os (ms). You can treat this metric as a
device load percentage (Value of 1 sec time spent matches 100% of load).

* “weighted_io_time” - measure of both I/O completion time and the backlog
that may be accumulating.
* “pending_operations” - shows queue size of pending I/O operations.


parameter_defaults:
CollectdExtraPlugins:
- disk
ExtraConfig:
collectd::plugin::disk::disk: "sda"
collectd::plugin::disk::ignoreselected: false

### virt

## Output plugins
Expand Down

0 comments on commit 8cec2fb

Please sign in to comment.