1
0
mirror of https://github.com/redis/node-redis.git synced 2025-12-14 09:42:12 +03:00

feat(client): add latency histogram (#3099)

* add latency histogram command, tests (##1955)
This commit is contained in:
Trofymenko Vladyslav
2025-11-03 14:05:58 +02:00
committed by GitHub
parent 38bfaa7c90
commit dae47b4820
3 changed files with 142 additions and 0 deletions

View File

@@ -364,6 +364,7 @@ import VREM from './VREM';
import VSETATTR from './VSETATTR';
import VSIM from './VSIM';
import VSIM_WITHSCORES from './VSIM_WITHSCORES';
import LATENCY_HISTOGRAM from './LATENCY_HISTOGRAM';
export {
CLIENT_KILL_FILTERS,
@@ -722,6 +723,8 @@ export default {
latencyGraph: LATENCY_GRAPH,
LATENCY_HISTORY,
latencyHistory: LATENCY_HISTORY,
LATENCY_HISTOGRAM,
latencyHistogram: LATENCY_HISTOGRAM,
LATENCY_LATEST,
latencyLatest: LATENCY_LATEST,
LATENCY_RESET,