mirror of
https://github.com/fluencelabs/redis
synced 2025-07-02 02:11:33 +00:00
Added an unique ID field to every slow log entry.
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user