From b809676a9e6b61029d542a1a165385946c55a3fc Mon Sep 17 00:00:00 2001
From: antirez <antirez@gmail.com>
Date: Tue, 1 Jul 2014 17:23:59 +0200
Subject: [PATCH] Latency monitor turned off by default.

It is not a good idea to bloat the code with gettimeofday() calls if the
instance is working well, and turning monitoring on at runtime is a
joke.
---
 src/redis.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/redis.h b/src/redis.h
index 17970bc4..02ce5478 100644
--- a/src/redis.h
+++ b/src/redis.h
@@ -127,7 +127,7 @@ typedef long long mstime_t; /* millisecond time type. */
 #define REDIS_PEER_ID_LEN (REDIS_IP_STR_LEN+32) /* Must be enough for ip:port */
 #define REDIS_BINDADDR_MAX 16
 #define REDIS_MIN_RESERVED_FDS 32
-#define REDIS_DEFAULT_LATENCY_MONITOR_THRESHOLD 10
+#define REDIS_DEFAULT_LATENCY_MONITOR_THRESHOLD 0
 
 #define ACTIVE_EXPIRE_CYCLE_LOOKUPS_PER_LOOP 20 /* Loopkups per loop. */
 #define ACTIVE_EXPIRE_CYCLE_FAST_DURATION 1000 /* Microseconds */