diff --git a/lib/live_cluster/client/node.py b/lib/live_cluster/client/node.py index 8b83ea00..d674f69b 100644 --- a/lib/live_cluster/client/node.py +++ b/lib/live_cluster/client/node.py @@ -2065,9 +2065,11 @@ async def info_latencies( namespaces = (await self._info("namespaces")).split(";") except Exception: return data + micro_benchmarks = [ "proxy", - "benchmark-fabric", + "read-touch", + "re-repl", "benchmarks-ops-sub", "benchmarks-read", "benchmarks-write", @@ -2075,6 +2077,7 @@ async def info_latencies( "benchmarks-udf-sub", "benchmarks-batch-sub", ] + cmd_latencies += [ "latencies:hist={%s}-%s" % (ns, optional) for ns in namespaces diff --git a/test/unit/live_cluster/client/test_node.py b/test/unit/live_cluster/client/test_node.py index 283ba302..81beb6c6 100644 --- a/test/unit/live_cluster/client/test_node.py +++ b/test/unit/live_cluster/client/test_node.py @@ -1743,11 +1743,14 @@ async def test_info_latencies_verbose(self): _ = await self.node.info_latencies(verbose=True) - self.assertEqual(self.info_mock.call_count, 10) + self.assertEqual(self.info_mock.call_count, 11) 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={test}-read-touch", self.ip + ) + self.info_mock.assert_any_call( + "latencies:hist={test}-re-repl", self.ip ) self.info_mock.assert_any_call( "latencies:hist={test}-benchmarks-ops-sub", self.ip