diff --git a/lib/live_cluster/client/node.py b/lib/live_cluster/client/node.py index 8b83ea00..46f2abe4 100644 --- a/lib/live_cluster/client/node.py +++ b/lib/live_cluster/client/node.py @@ -2067,7 +2067,6 @@ async def info_latencies( return data micro_benchmarks = [ "proxy", - "benchmark-fabric", "benchmarks-ops-sub", "benchmarks-read", "benchmarks-write", @@ -2080,6 +2079,9 @@ async def info_latencies( for ns in namespaces for optional in micro_benchmarks ] + + # TOOLS-2984: benchmarks-fabric is not at namespace-level + cmd_latencies.append("latencies:hist=benchmarks-fabric") hist_info = [] for cmd in cmd_latencies: diff --git a/test/unit/live_cluster/client/test_node.py b/test/unit/live_cluster/client/test_node.py index 283ba302..f71b280c 100644 --- a/test/unit/live_cluster/client/test_node.py +++ b/test/unit/live_cluster/client/test_node.py @@ -1747,7 +1747,7 @@ async def test_info_latencies_verbose(self): self.info_mock.assert_any_call("latencies:", self.ip) self.info_mock.assert_any_call("latencies:hist={test}-proxy", self.ip) self.info_mock.assert_any_call( - "latencies:hist={test}-benchmark-fabric", self.ip + "latencies:hist=benchmarks-fabric", self.ip ) self.info_mock.assert_any_call( "latencies:hist={test}-benchmarks-ops-sub", self.ip