Skip to content
This repository has been archived by the owner on Aug 28, 2021. It is now read-only.

Commit

Permalink
bad devices can report negative busy time
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhemmarchand committed Apr 7, 2017
1 parent 262e5d8 commit f552060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion default/data/ui/views/Nmon_Summary.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,7 @@ avg("CPU.Wait_PCT") AS "Wait %"</query>
<chart>
<title>Avg % busy time - click on the chart to get by device view</title>
<search>
<query>| tstats max(dg.disk_busy_time_pct) as disk_busy_time_pct from datamodel=NMON_Data_disks_dg where (nodename = dg) (host=$host$) groupby _time, host, dg.device prestats=true span=1m
<query>| tstats max(dg.disk_busy_time_pct) as disk_busy_time_pct from datamodel=NMON_Data_disks_dg where (nodename = dg) (dg.disk_busy_time_pct&gt;=0) (host=$host$) groupby _time, host, dg.device prestats=true span=1m
| bucket _time span=1m
| stats dedup_splitvals=t max(dg.disk_busy_time_pct) as disk_busy_time_pct by _time, host, dg.device
| rename "dg.device" AS device
Expand Down

0 comments on commit f552060

Please sign in to comment.