From ee3884e63c601fa559cd376a869af9f6c9276f2b Mon Sep 17 00:00:00 2001 From: Itamar Haber Date: Sun, 3 Dec 2017 17:39:52 +0200 Subject: [PATCH] Improve slowlog help --- src/slowlog.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/slowlog.c b/src/slowlog.c index 525fa8a09..3003abc42 100644 --- a/src/slowlog.c +++ b/src/slowlog.c @@ -142,7 +142,8 @@ void slowlogReset(void) { void slowlogCommand(client *c) { if (c->argc == 2 && !strcasecmp(c->argv[1]->ptr,"help")) { const char *help[] = { - "get [count] -- Return the top entries from the slowlog (default: 10).", + "get [count] -- Return top entries from the slowlog (default: 10). Entries are made of:", + " id, timestamp, time in microseconds, arguments array, client IP and port, client name", "len -- Return the length of the slowlog.", "reset -- Reset the slowlog.", NULL