You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After fixing the #1570 there appeared an inconvenience. The problem is that the ..._total_delay_sec metrics shows the sum of individual requests delays over some priod of time. And, for example, if there had passed 1k of requests with 50us delay each the metrics would report delta of 1k * 50us = 50ms. Thus when looking at the metrics it's always needed to make the reverse division (reported delay / reported IOPS) to get the idea of individual request latency.
If that's possible the dashboard should draw the rate(total_delay_sec) / rate(IOPS).
The text was updated successfully, but these errors were encountered:
After fixing the #1570 there appeared an inconvenience. The problem is that the
..._total_delay_sec
metrics shows the sum of individual requests delays over some priod of time. And, for example, if there had passed 1k of requests with 50us delay each the metrics would report delta of1k * 50us = 50ms
. Thus when looking at the metrics it's always needed to make the reverse division (reported delay / reported IOPS) to get the idea of individual request latency.If that's possible the dashboard should draw the
rate(total_delay_sec) / rate(IOPS)
.The text was updated successfully, but these errors were encountered: