summaryrefslogtreecommitdiffstats
path: root/src/commands/acl-log.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/acl-log.json')
-rw-r--r--src/commands/acl-log.json90
1 files changed, 90 insertions, 0 deletions
diff --git a/src/commands/acl-log.json b/src/commands/acl-log.json
new file mode 100644
index 0000000..de5f029
--- /dev/null
+++ b/src/commands/acl-log.json
@@ -0,0 +1,90 @@
+{
+ "LOG": {
+ "summary": "Lists recent security events generated due to ACL rules.",
+ "complexity": "O(N) with N being the number of entries shown.",
+ "group": "server",
+ "since": "6.0.0",
+ "arity": -2,
+ "container": "ACL",
+ "function": "aclCommand",
+ "history": [
+ [
+ "7.2.0",
+ "Added entry ID, timestamp created, and timestamp last updated."
+ ]
+ ],
+ "command_flags": [
+ "ADMIN",
+ "NOSCRIPT",
+ "LOADING",
+ "STALE",
+ "SENTINEL"
+ ],
+ "reply_schema": {
+ "oneOf": [
+ {
+ "description": "In case `RESET` was not given, a list of recent ACL security events.",
+ "type": "array",
+ "items": {
+ "type": "object",
+ "additionalProperties": false,
+ "properties": {
+ "count": {
+ "type": "integer"
+ },
+ "reason": {
+ "type": "string"
+ },
+ "context": {
+ "type": "string"
+ },
+ "object": {
+ "type": "string"
+ },
+ "username": {
+ "type": "string"
+ },
+ "age-seconds": {
+ "type": "number"
+ },
+ "client-info": {
+ "type": "string"
+ },
+ "entry-id": {
+ "type": "integer"
+ },
+ "timestamp-created": {
+ "type": "integer"
+ },
+ "timestamp-last-updated": {
+ "type": "integer"
+ }
+ }
+ }
+ },
+ {
+ "const": "OK",
+ "description": "In case `RESET` was given, OK indicates ACL log was cleared."
+ }
+ ]
+ },
+ "arguments": [
+ {
+ "name": "operation",
+ "type": "oneof",
+ "optional": true,
+ "arguments": [
+ {
+ "name": "count",
+ "type": "integer"
+ },
+ {
+ "name": "reset",
+ "type": "pure-token",
+ "token": "RESET"
+ }
+ ]
+ }
+ ]
+ }
+}