X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/daa70b179888121b92554103817443ad0ef32cd8..925927fc8f1b05624ffe76f8a98fc5c23088dd8c:/src/slowlog.h?ds=sidebyside diff --git a/src/slowlog.h b/src/slowlog.h index 45a50055..bad770db 100644 --- a/src/slowlog.h +++ b/src/slowlog.h @@ -2,6 +2,7 @@ typedef struct slowlogEntry { robj **argv; int argc; + long long id; /* Unique entry identifier. */ long long duration; /* Time spent by the query, in nanoseconds. */ time_t time; /* Unix time at which the query was executed. */ } slowlogEntry;