]> git.saurik.com Git - redis.git/blame - src/slowlog.h
First implementation of the slow log feature
[redis.git] / src / slowlog.h
CommitLineData
daa70b17 1/* This structure defines an entry inside the slow log list */
2typedef struct slowlogEntry {
3 robj **argv;
4 int argc;
5 long long duration; /* Time spent by the query, in nanoseconds. */
6 time_t time; /* Unix time at which the query was executed. */
7} slowlogEntry;
8
9/* Exported API */
10void slowlogInit(void);
11void slowlogPushEntryIfNeeded(robj **argv, int argc, long long duration);
12
13/* Exported commands */
14void slowlogCommand(redisClient *c);