1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
"GET": {
"summary": "Get the slow log's entries",
"complexity": "O(N) where N is the number of entries returned",
"group": "server",
"since": "2.2.12",
"arity": -2,
"container": "SLOWLOG",
"function": "slowlogCommand",
"history": [
[
"4.0.0",
"Added client IP address, port and name to the reply."
]
],
"command_flags": [
"ADMIN",
"LOADING",
"STALE"
],
"command_tips": [
"REQUEST_POLICY:ALL_NODES",
"NONDETERMINISTIC_OUTPUT"
],
"arguments": [
{
"name": "count",
"type": "integer",
"optional": true
}
]
}
}
|