Latency monitor: command duration is in useconds. Convert.

This commit is contained in:
antirez
2014-07-01 16:09:02 +02:00
parent 551bee86b4
commit 753b707d2a
2 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ void latencyAddSample(char *event, mstime_t latency);
/* Add the sample only if the elapsed time is >= to the configured threshold. */
#define latencyAddSampleIfNeeded(event,var) \
if (server.latency_monitor_threshold && \
var >= server.latency_monitor_threshold) \
latencyAddSample(event,var);
(var) >= server.latency_monitor_threshold) \
latencyAddSample((event),(var));
#endif /* __LATENCY_H */