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
Copy file name to clipboardExpand all lines: pkg/ui/workspaces/db-console/src/views/cluster/containers/nodeGraphs/dashboards/overload.tsx
+26-4Lines changed: 26 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -62,11 +62,11 @@ export default function (props: GraphDashboardProps) {
62
62
</LineGraph>,
63
63
64
64
<LineGraph
65
-
title="Admission IO Tokens Exhausted Duration Per Second"
65
+
title="Admission Foreground IO Tokens Exhausted Duration Per Second"
66
66
sources={storeSources}
67
67
tenantSource={tenantSource}
68
68
showMetricsInTooltip={true}
69
-
tooltip={`Relative time the node had exhausted IO tokens for all IO-bound work per second of wall time, measured in microseconds/second. Increased IO token exhausted duration indicates IO resource exhaustion.`}
69
+
tooltip={`Relative time the store had exhausted foreground (regular) IO tokens for all IO-bound work per second of wall time, measured in microseconds/second. Increased IO token exhausted duration indicates IO resource exhaustion.`}
70
70
>
71
71
<Axislabel="Duration (micros/sec)">
72
72
{storeMetrics(
@@ -79,6 +79,17 @@ export default function (props: GraphDashboardProps) {
79
79
storeIDsByNodeID,
80
80
"regular (foreground)",
81
81
)}
82
+
</Axis>
83
+
</LineGraph>,
84
+
85
+
<LineGraph
86
+
title="Admission Background IO Tokens Exhausted Duration Per Second"
87
+
sources={storeSources}
88
+
tenantSource={tenantSource}
89
+
showMetricsInTooltip={true}
90
+
tooltip={`Relative time the store had exhausted background (elastic) IO tokens for all IO-bound work per second of wall time, measured in microseconds/second. Increased IO token exhausted duration indicates IO resource exhaustion.`}
0 commit comments