diff options
author | antirez <antirez@gmail.com> | 2014-07-01 16:04:59 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-07-01 16:07:13 +0200 |
commit | 551bee86b42e7c41c9cd550795685eb20b207b88 (patch) | |
tree | 1eafccb38061e9a5fcf5a4384b33290315d8dc61 /src/latency.c | |
parent | 8612e6de888fe30bd8cfcd0f4ad1979a92434a2f (diff) | |
download | redis-551bee86b42e7c41c9cd550795685eb20b207b88.tar.gz |
LATENCY SAMPLES implemented.
Diffstat (limited to 'src/latency.c')
-rw-r--r-- | src/latency.c | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/latency.c b/src/latency.c index 582906edc..bb05e8e71 100644 --- a/src/latency.c +++ b/src/latency.c @@ -89,5 +89,49 @@ void latencyAddSample(char *event, mstime_t latency) { /* ---------------------- Latency command implementation -------------------- */ +/* latencyCommand() helper to produce a time-delay reply for all the samples + * in memory for the specified time series. */ +void latencyCommandReplyWithSamples(redisClient *c, struct latencyTimeSeries *ts) { + void *replylen = addDeferredMultiBulkLength(c); + int samples = 0, j; + + for (j = 0; j < LATENCY_TS_LEN; j++) { + int i = (ts->idx + j) % LATENCY_TS_LEN; + + if (ts->samples[i].time == 0) continue; + addReplyMultiBulkLen(c,2); + addReplyLongLong(c,ts->samples[i].time); + addReplyLongLong(c,ts->samples[i].latency); + samples++; + } + setDeferredMultiBulkLength(c,replylen,samples); +} + +/* LATENCY command implementations. + * + * LATENCY SAMPLES: return time-latency samples for the specified event. + * LATENCY LATEST: return the latest latency for all the events classes. + * LATENCY DOCTOR: returns an human readable analysis of instance latency. + * LATENCY GRAPH: provide an ASCII graph of the latency of the specified event. + */ void latencyCommand(redisClient *c) { + struct latencyTimeSeries *ts; + + if (!strcasecmp(c->argv[1]->ptr,"samples") && c->argc == 3) { + /* LATENCY SAMPLES <event> */ + ts = dictFetchValue(server.latency_events,c->argv[2]->ptr); + if (ts == NULL) goto nodataerr; + latencyCommandReplyWithSamples(c,ts); + } else { + addReply(c,shared.syntaxerr); + return; + } + return; + +nodataerr: + /* Common error when the user asks for an event we have no latency + * information about. */ + addReplyErrorFormat(c, + "No samples available for event '%s'", c->argv[2]->ptr); } + |