]> git.saurik.com Git - redis.git/commitdiff
Added a qbuf-free field to CLIENT LIST output.
authorantirez <antirez@gmail.com>
Tue, 13 Mar 2012 12:26:33 +0000 (13:26 +0100)
committerantirez <antirez@gmail.com>
Tue, 13 Mar 2012 12:26:33 +0000 (13:26 +0100)
src/networking.c

index b0f4505446f6e6a29e70f41ea35f0e909885c7eb..06097b586863a634a9a98d3d7156b06a5223db4d 100644 (file)
@@ -1111,7 +1111,7 @@ sds getClientInfoString(redisClient *client) {
     if (emask & AE_WRITABLE) *p++ = 'w';
     *p = '\0';
     return sdscatprintf(sdsempty(),
-        "addr=%s:%d fd=%d age=%ld idle=%ld flags=%s db=%d sub=%d psub=%d qbuf=%lu obl=%lu oll=%lu omem=%lu events=%s cmd=%s",
+        "addr=%s:%d fd=%d age=%ld idle=%ld flags=%s db=%d sub=%d psub=%d qbuf=%lu qbuf-free=%lu obl=%lu oll=%lu omem=%lu events=%s cmd=%s",
         ip,port,client->fd,
         (long)(now - client->ctime),
         (long)(now - client->lastinteraction),
@@ -1120,6 +1120,7 @@ sds getClientInfoString(redisClient *client) {
         (int) dictSize(client->pubsub_channels),
         (int) listLength(client->pubsub_patterns),
         (unsigned long) sdslen(client->querybuf),
+        (unsigned long) sdsavail(client->querybuf),
         (unsigned long) client->bufpos,
         (unsigned long) listLength(client->reply),
         getClientOutputBufferMemoryUsage(client),