summaryrefslogtreecommitdiff
path: root/src/commands/client-list.json
blob: bcd1dcefb8eb6526d3d34afd58f3d0a70a650836 (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
    "LIST": {
        "summary": "Get the list of client connections",
        "complexity": "O(N) where N is the number of client connections",
        "group": "connection",
        "since": "2.4.0",
        "arity": -2,
        "container": "CLIENT",
        "function": "clientCommand",
        "history": [
            [
                "2.8.12",
                "Added unique client `id` field."
            ],
            [
                "5.0.0",
                "Added optional `TYPE` filter."
            ],
            [
                "6.2.0",
                "Added `laddr` field and the optional `ID` filter."
            ]
        ],
        "command_flags": [
            "ADMIN",
            "NOSCRIPT",
            "LOADING",
            "STALE"
        ],
        "acl_categories": [
            "CONNECTION"
        ],
        "command_tips": [
            "NONDETERMINISTIC_OUTPUT"
        ],
        "arguments": [
            {
                "token": "TYPE",
                "name": "normal_master_replica_pubsub",
                "type": "oneof",
                "optional": true,
                "since": "5.0.0",
                "arguments": [
                    {
                        "name": "normal",
                        "type": "pure-token",
                        "token": "normal"
                    },
                    {
                        "name": "master",
                        "type": "pure-token",
                        "token": "master"
                    },
                    {
                        "name": "replica",
                        "type": "pure-token",
                        "token": "replica"
                    },
                    {
                        "name": "pubsub",
                        "type": "pure-token",
                        "token": "pubsub"
                    }
                ]
            },
            {
                "name": "id",
                "token": "ID",
                "type": "block",
                "optional": true,
                "since": "6.2.0",
                "arguments": [
                    {
                        "name": "client-id",
                        "type": "integer",
                        "multiple": true
                    }
                ]
            }
        ]
    }
}