Skip to content

Commit 5d8109e

Browse files
committed
Swapped order of Replication Lag and Logical Bytes graphs in Physical Cluster Replication DB Console
Fixes: #147621 Release note: none
1 parent 4a0f95a commit 5d8109e

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

pkg/ui/workspaces/db-console/src/views/cluster/containers/nodeGraphs/dashboards/crossClusterReplication.tsx

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,6 @@ export default function (props: GraphDashboardProps) {
1818
const { storeSources, tenantSource } = props;
1919

2020
return [
21-
<LineGraph
22-
title="Logical Bytes"
23-
sources={storeSources}
24-
tenantSource={tenantSource}
25-
tooltip={`Rate at which the logical bytes (sum of keys + values) are ingested by all replication jobs`}
26-
>
27-
<Axis units={AxisUnits.Bytes} label="bytes">
28-
<Metric
29-
name="cr.node.physical_replication.logical_bytes"
30-
title="Logical Bytes"
31-
nonNegativeRate
32-
/>
33-
</Axis>
34-
</LineGraph>,
3521
<LineGraph
3622
title="Replication Lag"
3723
sources={storeSources}
@@ -61,5 +47,19 @@ export default function (props: GraphDashboardProps) {
6147
/>
6248
</Axis>
6349
</LineGraph>,
50+
<LineGraph
51+
title="Logical Bytes"
52+
sources={storeSources}
53+
tenantSource={tenantSource}
54+
tooltip={`Rate at which the logical bytes (sum of keys + values) are ingested by all replication jobs`}
55+
>
56+
<Axis units={AxisUnits.Bytes} label="bytes">
57+
<Metric
58+
name="cr.node.physical_replication.logical_bytes"
59+
title="Logical Bytes"
60+
nonNegativeRate
61+
/>
62+
</Axis>
63+
</LineGraph>,
6464
];
6565
}

0 commit comments

Comments
 (0)