From 21784def707d3b36e17619dc620917eeea805bc8 Mon Sep 17 00:00:00 2001 From: filipe oliveira Date: Tue, 25 Aug 2020 19:21:29 +0100 Subject: Extended redis-benchmark instant metrics and overall latency report (#7600) A first step to enable a consistent full percentile analysis on query latency so that we can fully understand the performance and stability characteristics of the redis-server system we are measuring. It also improves the instantaneous reported metrics, and the csv output format. --- deps/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'deps/Makefile') diff --git a/deps/Makefile b/deps/Makefile index 700867f3b..0815d15de 100644 --- a/deps/Makefile +++ b/deps/Makefile @@ -37,6 +37,7 @@ distclean: -(cd linenoise && $(MAKE) clean) > /dev/null || true -(cd lua && $(MAKE) clean) > /dev/null || true -(cd jemalloc && [ -f Makefile ] && $(MAKE) distclean) > /dev/null || true + -(cd hdr_histogram && $(MAKE) clean) > /dev/null || true -(rm -f .make-*) .PHONY: distclean @@ -57,6 +58,12 @@ linenoise: .make-prerequisites .PHONY: linenoise +hdr_histogram: .make-prerequisites + @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) + cd hdr_histogram && $(MAKE) + +.PHONY: hdr_histogram + ifeq ($(uname_S),SunOS) # Make isinf() available LUA_CFLAGS= -D__C99FEATURES__=1 -- cgit v1.2.1