diff options
author | Pim van den Berg | 2017-03-04 16:28:10 +0100 |
---|---|---|
committer | Pim van den Berg | 2017-03-04 16:29:18 +0100 |
commit | ae416ccb09d2d153ecedeb3caa354aafa5bd9683 (patch) | |
tree | f51014562e2cfb0d211607fcd357fc38e55e85b3 | |
parent | plugin/memory: add slab_recl, slab_unrecl (diff) | |
download | apt-panopticon_cgp-ae416ccb09d2d153ecedeb3caa354aafa5bd9683.zip apt-panopticon_cgp-ae416ccb09d2d153ecedeb3caa354aafa5bd9683.tar.gz apt-panopticon_cgp-ae416ccb09d2d153ecedeb3caa354aafa5bd9683.tar.bz2 apt-panopticon_cgp-ae416ccb09d2d153ecedeb3caa354aafa5bd9683.tar.xz |
plugin/disk: add pending_operations, disk_io_time
-rw-r--r-- | plugin/disk.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/plugin/disk.json b/plugin/disk.json index 37e7e8b..462f8f4 100644 --- a/plugin/disk.json +++ b/plugin/disk.json | |||
@@ -63,5 +63,32 @@ | |||
63 | }, | 63 | }, |
64 | "legend_format": "%5.1lf%ss", | 64 | "legend_format": "%5.1lf%ss", |
65 | "scale": 0.001 | 65 | "scale": 0.001 |
66 | }, | ||
67 | "pending_operations": { | ||
68 | "title": "Disk Pending Operations ({{PI}}) on {{HOST}}", | ||
69 | "vertical": "Operations", | ||
70 | "legend": { | ||
71 | "value": { | ||
72 | "name": "Operations", | ||
73 | "color": "0000f0" | ||
74 | } | ||
75 | }, | ||
76 | "legend_format": "%5.1lf%s" | ||
77 | }, | ||
78 | "disk_io_time": { | ||
79 | "title": "Disk time spent doing I/Os ({{PI}}) on {{HOST}}", | ||
80 | "vertical": "I/O time (s)", | ||
81 | "legend": { | ||
82 | "io_time": { | ||
83 | "name": "I/O Time", | ||
84 | "color": "0000ff" | ||
85 | }, | ||
86 | "weighted_io_time": { | ||
87 | "name": "Weighted I/O Time", | ||
88 | "color": "f0a000" | ||
89 | } | ||
90 | }, | ||
91 | "legend_format": "%5.1lf%ss", | ||
92 | "scale": 0.001 | ||
66 | } | 93 | } |
67 | } | 94 | } |