summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorVladimir Kobal <vlad@prokk.net>2021-03-03 16:02:13 +0200
committerGitHub <noreply@github.com>2021-03-03 16:02:13 +0200
commit9b48ae8690586d8fdba9c7e482bd4afe89461d36 (patch)
treedd9b20218391f57a450737b85b8eee72f7d0d915 /web
parentc629e561eb54cc4bfae0b508cc76f278790e3ad6 (diff)
Fix disk utilization and backlog charts (#10705)
Diffstat (limited to 'web')
-rw-r--r--web/gui/dashboard_info.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/web/gui/dashboard_info.js b/web/gui/dashboard_info.js
index df15a63723..4529413175 100644
--- a/web/gui/dashboard_info.js
+++ b/web/gui/dashboard_info.js
@@ -1342,6 +1342,11 @@ netdataDashboard.context = {
info: 'Disk Utilization measures the amount of time the disk was busy with something. This is not related to its performance. 100% means that the system always had an outstanding operation on the disk. Keep in mind that depending on the underlying technology of the disk, 100% here may or may not be an indication of congestion.'
},
+ 'disk.busy': {
+ colors: '#FF5588',
+ info: 'Disk Busy Time measures the amount of time the disk was busy with something.'
+ },
+
'disk.backlog': {
colors: '#0099CC',
info: 'Backlog is an indication of the duration of pending disk operations. On every I/O event the system is multiplying the time spent doing I/O since the last update of this field with the number of pending operations. While not accurate, this metric can provide an indication of the expected completion time of the operations in progress.'