files.com 1.2.256 → 1.2.258
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_VERSION +1 -1
- package/docs/models/ApiRequestLog.md +10 -4
- package/docs/models/As2Partner.md +3 -3
- package/docs/models/AutomationLog.md +10 -4
- package/docs/models/EmailLog.md +10 -4
- package/docs/models/ExavaultApiRequestLog.md +10 -4
- package/docs/models/FileMigrationLog.md +10 -4
- package/docs/models/FtpActionLog.md +10 -4
- package/docs/models/OutboundConnectionLog.md +10 -4
- package/docs/models/PublicHostingRequestLog.md +10 -4
- package/docs/models/SftpActionLog.md +10 -4
- package/docs/models/SyncLog.md +10 -4
- package/docs/models/WebDavActionLog.md +10 -4
- package/lib/Files.js +1 -1
- package/lib/models/ApiRequestLog.js +11 -3
- package/lib/models/As2Partner.js +3 -3
- package/lib/models/AutomationLog.js +11 -3
- package/lib/models/EmailLog.js +11 -3
- package/lib/models/ExavaultApiRequestLog.js +11 -3
- package/lib/models/FileMigrationLog.js +11 -3
- package/lib/models/FtpActionLog.js +29 -170
- package/lib/models/OutboundConnectionLog.js +11 -3
- package/lib/models/PublicHostingRequestLog.js +11 -3
- package/lib/models/SftpActionLog.js +33 -186
- package/lib/models/SyncLog.js +11 -3
- package/lib/models/WebDavActionLog.js +11 -3
- package/package.json +1 -1
- package/src/Files.js +1 -1
- package/src/models/ApiRequestLog.js +10 -3
- package/src/models/As2Partner.js +3 -3
- package/src/models/AutomationLog.js +10 -3
- package/src/models/EmailLog.js +10 -3
- package/src/models/ExavaultApiRequestLog.js +10 -3
- package/src/models/FileMigrationLog.js +10 -3
- package/src/models/FtpActionLog.js +10 -3
- package/src/models/OutboundConnectionLog.js +10 -3
- package/src/models/PublicHostingRequestLog.js +10 -3
- package/src/models/SftpActionLog.js +10 -3
- package/src/models/SyncLog.js +10 -3
- package/src/models/WebDavActionLog.js +10 -3
|
@@ -20,11 +20,12 @@
|
|
|
20
20
|
"entries_returned": 1,
|
|
21
21
|
"success": true,
|
|
22
22
|
"status": "example",
|
|
23
|
-
"duration_ms": 1
|
|
23
|
+
"duration_ms": 1,
|
|
24
|
+
"created_at": "2000-01-01T01:00:00Z"
|
|
24
25
|
}
|
|
25
26
|
```
|
|
26
27
|
|
|
27
|
-
* `timestamp` (date-time): Start Time of Action
|
|
28
|
+
* `timestamp` (date-time): Start Time of Action. Deprecrated: Use created_at.
|
|
28
29
|
* `remote_ip` (string): IP Address of WebDAV Client
|
|
29
30
|
* `server_ip` (string): IP Address of WebDAV Server
|
|
30
31
|
* `username` (string): Username
|
|
@@ -41,6 +42,7 @@
|
|
|
41
42
|
* `success` (boolean): Whether WebDAV Action was successful.
|
|
42
43
|
* `status` (string): WebDAV Action status.
|
|
43
44
|
* `duration_ms` (int64): Duration (in milliseconds)
|
|
45
|
+
* `created_at` (date-time): Start Time of Action
|
|
44
46
|
|
|
45
47
|
---
|
|
46
48
|
|
|
@@ -55,5 +57,9 @@ await WebDavActionLog.list
|
|
|
55
57
|
|
|
56
58
|
* `cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
|
|
57
59
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
58
|
-
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `start_date`, `end_date`, `path`, `true_path`, `remote_ip`, `success`, `status`, `action_type` or `username`. Valid field combinations are `[ start_date ]`, `[ end_date ]`, `[ path ]`, `[ true_path ]`, `[ remote_ip ]`, `[ success ]`, `[ status ]`, `[ action_type ]`, `[ username ]`, `[ start_date, end_date ]`, `[ start_date, path ]`, `[ start_date, true_path ]`, `[ start_date, remote_ip ]`, `[ start_date, success ]`, `[ start_date, status ]`, `[ start_date, action_type ]`, `[ start_date, username ]`, `[ end_date, path ]`, `[ end_date, true_path ]`, `[ end_date, remote_ip ]`, `[ end_date, success ]`, `[ end_date, status ]`, `[ end_date, action_type ]`, `[ end_date, username ]`, `[ path, true_path ]`, `[ path, remote_ip ]`, `[ path, success ]`, `[ path, status ]`, `[ path, action_type ]`, `[ path, username ]`, `[ true_path, remote_ip ]`, `[ true_path, success ]`, `[ true_path, status ]`, `[ true_path, action_type ]`, `[ true_path, username ]`, `[ remote_ip, success ]`, `[ remote_ip, status ]`, `[ remote_ip, action_type ]`, `[ remote_ip, username ]`, `[ success, status ]`, `[ success, action_type ]`, `[ success, username ]`, `[ status, action_type ]`, `[ status, username ]`, `[ action_type, username ]`, `[ start_date, end_date, path ]`, `[ start_date, end_date, true_path ]`, `[ start_date, end_date, remote_ip ]`, `[ start_date, end_date, success ]`, `[ start_date, end_date, status ]`, `[ start_date, end_date, action_type ]`, `[ start_date, end_date, username ]`, `[ start_date, path, true_path ]`, `[ start_date, path, remote_ip ]`, `[ start_date, path, success ]`, `[ start_date, path, status ]`, `[ start_date, path, action_type ]`, `[ start_date, path, username ]`, `[ start_date, true_path, remote_ip ]`, `[ start_date, true_path, success ]`, `[ start_date, true_path, status ]`, `[ start_date, true_path, action_type ]`, `[ start_date, true_path, username ]`, `[ start_date, remote_ip, success ]`, `[ start_date, remote_ip, status ]`, `[ start_date, remote_ip, action_type ]`, `[ start_date, remote_ip, username ]`, `[ start_date, success, status ]`, `[ start_date, success, action_type ]`, `[ start_date, success, username ]`, `[ start_date, status, action_type ]`, `[ start_date, status, username ]`, `[ start_date, action_type, username ]`, `[ end_date, path, true_path ]`, `[ end_date, path, remote_ip ]`, `[ end_date, path, success ]`, `[ end_date, path, status ]`, `[ end_date, path, action_type ]`, `[ end_date, path, username ]`, `[ end_date, true_path, remote_ip ]`, `[ end_date, true_path, success ]`, `[ end_date, true_path, status ]`, `[ end_date, true_path, action_type ]`, `[ end_date, true_path, username ]`, `[ end_date, remote_ip, success ]`, `[ end_date, remote_ip, status ]`, `[ end_date, remote_ip, action_type ]`, `[ end_date, remote_ip, username ]`, `[ end_date, success, status ]`, `[ end_date, success, action_type ]`, `[ end_date, success, username ]`, `[ end_date, status, action_type ]`, `[ end_date, status, username ]`, `[ end_date, action_type, username ]`, `[ path, true_path, remote_ip ]`, `[ path, true_path, success ]`, `[ path, true_path, status ]`, `[ path, true_path, action_type ]`, `[ path, true_path, username ]`, `[ path, remote_ip, success ]`, `[ path, remote_ip, status ]`, `[ path, remote_ip, action_type ]`, `[ path, remote_ip, username ]`, `[ path, success, status ]`, `[ path, success, action_type ]`, `[ path, success, username ]`, `[ path, status, action_type ]`, `[ path, status, username ]`, `[ path, action_type, username ]`, `[ true_path, remote_ip, success ]`, `[ true_path, remote_ip, status ]`, `[ true_path, remote_ip, action_type ]`, `[ true_path, remote_ip, username ]`, `[ true_path, success, status ]`, `[ true_path, success, action_type ]`, `[ true_path, success, username ]`, `[ true_path, status, action_type ]`, `[ true_path, status, username ]`, `[ true_path, action_type, username ]`, `[ remote_ip, success, status ]`, `[ remote_ip, success, action_type ]`, `[ remote_ip, success, username ]`, `[ remote_ip, status, action_type ]`, `[ remote_ip, status, username ]`, `[ remote_ip, action_type, username ]`, `[ success, status, action_type ]`, `[ success, status, username ]`, `[ success, action_type, username ]`, `[ status, action_type, username ]`, `[ start_date, end_date, path, true_path ]`, `[ start_date, end_date, path, remote_ip ]`, `[ start_date, end_date, path, success ]`, `[ start_date, end_date, path, status ]`, `[ start_date, end_date, path, action_type ]`, `[ start_date, end_date, path, username ]`, `[ start_date, end_date, true_path, remote_ip ]`, `[ start_date, end_date, true_path, success ]`, `[ start_date, end_date, true_path, status ]`, `[ start_date, end_date, true_path, action_type ]`, `[ start_date, end_date, true_path, username ]`, `[ start_date, end_date, remote_ip, success ]`, `[ start_date, end_date, remote_ip, status ]`, `[ start_date, end_date, remote_ip, action_type ]`, `[ start_date, end_date, remote_ip, username ]`, `[ start_date, end_date, success, status ]`, `[ start_date, end_date, success, action_type ]`, `[ start_date, end_date, success, username ]`, `[ start_date, end_date, status, action_type ]`, `[ start_date, end_date, status, username ]`, `[ start_date, end_date, action_type, username ]`, `[ start_date, path, true_path, remote_ip ]`, `[ start_date, path, true_path, success ]`, `[ start_date, path, true_path, status ]`, `[ start_date, path, true_path, action_type ]`, `[ start_date, path, true_path, username ]`, `[ start_date, path, remote_ip, success ]`, `[ start_date, path, remote_ip, status ]`, `[ start_date, path, remote_ip, action_type ]`, `[ start_date, path, remote_ip, username ]`, `[ start_date, path, success, status ]`, `[ start_date, path, success, action_type ]`, `[ start_date, path, success, username ]`, `[ start_date, path, status, action_type ]`, `[ start_date, path, status, username ]`, `[ start_date, path, action_type, username ]`, `[ start_date, true_path, remote_ip, success ]`, `[ start_date, true_path, remote_ip, status ]`, `[ start_date, true_path, remote_ip, action_type ]`, `[ start_date, true_path, remote_ip, username ]`, `[ start_date, true_path, success, status ]`, `[ start_date, true_path, success, action_type ]`, `[ start_date, true_path, success, username ]`, `[ start_date, true_path, status, action_type ]`, `[ start_date, true_path, status, username ]`, `[ start_date, true_path, action_type, username ]`, `[ start_date, remote_ip, success, status ]`, `[ start_date, remote_ip, success, action_type ]`, `[ start_date, remote_ip, success, username ]`, `[ start_date, remote_ip, status, action_type ]`, `[ start_date, remote_ip, status, username ]`, `[ start_date, remote_ip, action_type, username ]`, `[ start_date, success, status, action_type ]`, `[ start_date, success, status, username ]`, `[ start_date, success, action_type, username ]`, `[ start_date, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip ]`, `[ end_date, path, true_path, success ]`, `[ end_date, path, true_path, status ]`, `[ end_date, path, true_path, action_type ]`, `[ end_date, path, true_path, username ]`, `[ end_date, path, remote_ip, success ]`, `[ end_date, path, remote_ip, status ]`, `[ end_date, path, remote_ip, action_type ]`, `[ end_date, path, remote_ip, username ]`, `[ end_date, path, success, status ]`, `[ end_date, path, success, action_type ]`, `[ end_date, path, success, username ]`, `[ end_date, path, status, action_type ]`, `[ end_date, path, status, username ]`, `[ end_date, path, action_type, username ]`, `[ end_date, true_path, remote_ip, success ]`, `[ end_date, true_path, remote_ip, status ]`, `[ end_date, true_path, remote_ip, action_type ]`, `[ end_date, true_path, remote_ip, username ]`, `[ end_date, true_path, success, status ]`, `[ end_date, true_path, success, action_type ]`, `[ end_date, true_path, success, username ]`, `[ end_date, true_path, status, action_type ]`, `[ end_date, true_path, status, username ]`, `[ end_date, true_path, action_type, username ]`, `[ end_date, remote_ip, success, status ]`, `[ end_date, remote_ip, success, action_type ]`, `[ end_date, remote_ip, success, username ]`, `[ end_date, remote_ip, status, action_type ]`, `[ end_date, remote_ip, status, username ]`, `[ end_date, remote_ip, action_type, username ]`, `[ end_date, success, status, action_type ]`, `[ end_date, success, status, username ]`, `[ end_date, success, action_type, username ]`, `[ end_date, status, action_type, username ]`, `[ path, true_path, remote_ip, success ]`, `[ path, true_path, remote_ip, status ]`, `[ path, true_path, remote_ip, action_type ]`, `[ path, true_path, remote_ip, username ]`, `[ path, true_path, success, status ]`, `[ path, true_path, success, action_type ]`, `[ path, true_path, success, username ]`, `[ path, true_path, status, action_type ]`, `[ path, true_path, status, username ]`, `[ path, true_path, action_type, username ]`, `[ path, remote_ip, success, status ]`, `[ path, remote_ip, success, action_type ]`, `[ path, remote_ip, success, username ]`, `[ path, remote_ip, status, action_type ]`, `[ path, remote_ip, status, username ]`, `[ path, remote_ip, action_type, username ]`, `[ path, success, status, action_type ]`, `[ path, success, status, username ]`, `[ path, success, action_type, username ]`, `[ path, status, action_type, username ]`, `[ true_path, remote_ip, success, status ]`, `[ true_path, remote_ip, success, action_type ]`, `[ true_path, remote_ip, success, username ]`, `[ true_path, remote_ip, status, action_type ]`, `[ true_path, remote_ip, status, username ]`, `[ true_path, remote_ip, action_type, username ]`, `[ true_path, success, status, action_type ]`, `[ true_path, success, status, username ]`, `[ true_path, success, action_type, username ]`, `[ true_path, status, action_type, username ]`, `[ remote_ip, success, status, action_type ]`, `[ remote_ip, success, status, username ]`, `[ remote_ip, success, action_type, username ]`, `[ remote_ip, status, action_type, username ]`, `[ success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip ]`, `[ start_date, end_date, path, true_path, success ]`, `[ start_date, end_date, path, true_path, status ]`, `[ start_date, end_date, path, true_path, action_type ]`, `[ start_date, end_date, path, true_path, username ]`, `[ start_date, end_date, path, remote_ip, success ]`, `[ start_date, end_date, path, remote_ip, status ]`, `[ start_date, end_date, path, remote_ip, action_type ]`, `[ start_date, end_date, path, remote_ip, username ]`, `[ start_date, end_date, path, success, status ]`, `[ start_date, end_date, path, success, action_type ]`, `[ start_date, end_date, path, success, username ]`, `[ start_date, end_date, path, status, action_type ]`, `[ start_date, end_date, path, status, username ]`, `[ start_date, end_date, path, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success ]`, `[ start_date, end_date, true_path, remote_ip, status ]`, `[ start_date, end_date, true_path, remote_ip, action_type ]`, `[ start_date, end_date, true_path, remote_ip, username ]`, `[ start_date, end_date, true_path, success, status ]`, `[ start_date, end_date, true_path, success, action_type ]`, `[ start_date, end_date, true_path, success, username ]`, `[ start_date, end_date, true_path, status, action_type ]`, `[ start_date, end_date, true_path, status, username ]`, `[ start_date, end_date, true_path, action_type, username ]`, `[ start_date, end_date, remote_ip, success, status ]`, `[ start_date, end_date, remote_ip, success, action_type ]`, `[ start_date, end_date, remote_ip, success, username ]`, `[ start_date, end_date, remote_ip, status, action_type ]`, `[ start_date, end_date, remote_ip, status, username ]`, `[ start_date, end_date, remote_ip, action_type, username ]`, `[ start_date, end_date, success, status, action_type ]`, `[ start_date, end_date, success, status, username ]`, `[ start_date, end_date, success, action_type, username ]`, `[ start_date, end_date, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success ]`, `[ start_date, path, true_path, remote_ip, status ]`, `[ start_date, path, true_path, remote_ip, action_type ]`, `[ start_date, path, true_path, remote_ip, username ]`, `[ start_date, path, true_path, success, status ]`, `[ start_date, path, true_path, success, action_type ]`, `[ start_date, path, true_path, success, username ]`, `[ start_date, path, true_path, status, action_type ]`, `[ start_date, path, true_path, status, username ]`, `[ start_date, path, true_path, action_type, username ]`, `[ start_date, path, remote_ip, success, status ]`, `[ start_date, path, remote_ip, success, action_type ]`, `[ start_date, path, remote_ip, success, username ]`, `[ start_date, path, remote_ip, status, action_type ]`, `[ start_date, path, remote_ip, status, username ]`, `[ start_date, path, remote_ip, action_type, username ]`, `[ start_date, path, success, status, action_type ]`, `[ start_date, path, success, status, username ]`, `[ start_date, path, success, action_type, username ]`, `[ start_date, path, status, action_type, username ]`, `[ start_date, true_path, remote_ip, success, status ]`, `[ start_date, true_path, remote_ip, success, action_type ]`, `[ start_date, true_path, remote_ip, success, username ]`, `[ start_date, true_path, remote_ip, status, action_type ]`, `[ start_date, true_path, remote_ip, status, username ]`, `[ start_date, true_path, remote_ip, action_type, username ]`, `[ start_date, true_path, success, status, action_type ]`, `[ start_date, true_path, success, status, username ]`, `[ start_date, true_path, success, action_type, username ]`, `[ start_date, true_path, status, action_type, username ]`, `[ start_date, remote_ip, success, status, action_type ]`, `[ start_date, remote_ip, success, status, username ]`, `[ start_date, remote_ip, success, action_type, username ]`, `[ start_date, remote_ip, status, action_type, username ]`, `[ start_date, success, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success ]`, `[ end_date, path, true_path, remote_ip, status ]`, `[ end_date, path, true_path, remote_ip, action_type ]`, `[ end_date, path, true_path, remote_ip, username ]`, `[ end_date, path, true_path, success, status ]`, `[ end_date, path, true_path, success, action_type ]`, `[ end_date, path, true_path, success, username ]`, `[ end_date, path, true_path, status, action_type ]`, `[ end_date, path, true_path, status, username ]`, `[ end_date, path, true_path, action_type, username ]`, `[ end_date, path, remote_ip, success, status ]`, `[ end_date, path, remote_ip, success, action_type ]`, `[ end_date, path, remote_ip, success, username ]`, `[ end_date, path, remote_ip, status, action_type ]`, `[ end_date, path, remote_ip, status, username ]`, `[ end_date, path, remote_ip, action_type, username ]`, `[ end_date, path, success, status, action_type ]`, `[ end_date, path, success, status, username ]`, `[ end_date, path, success, action_type, username ]`, `[ end_date, path, status, action_type, username ]`, `[ end_date, true_path, remote_ip, success, status ]`, `[ end_date, true_path, remote_ip, success, action_type ]`, `[ end_date, true_path, remote_ip, success, username ]`, `[ end_date, true_path, remote_ip, status, action_type ]`, `[ end_date, true_path, remote_ip, status, username ]`, `[ end_date, true_path, remote_ip, action_type, username ]`, `[ end_date, true_path, success, status, action_type ]`, `[ end_date, true_path, success, status, username ]`, `[ end_date, true_path, success, action_type, username ]`, `[ end_date, true_path, status, action_type, username ]`, `[ end_date, remote_ip, success, status, action_type ]`, `[ end_date, remote_ip, success, status, username ]`, `[ end_date, remote_ip, success, action_type, username ]`, `[ end_date, remote_ip, status, action_type, username ]`, `[ end_date, success, status, action_type, username ]`, `[ path, true_path, remote_ip, success, status ]`, `[ path, true_path, remote_ip, success, action_type ]`, `[ path, true_path, remote_ip, success, username ]`, `[ path, true_path, remote_ip, status, action_type ]`, `[ path, true_path, remote_ip, status, username ]`, `[ path, true_path, remote_ip, action_type, username ]`, `[ path, true_path, success, status, action_type ]`, `[ path, true_path, success, status, username ]`, `[ path, true_path, success, action_type, username ]`, `[ path, true_path, status, action_type, username ]`, `[ path, remote_ip, success, status, action_type ]`, `[ path, remote_ip, success, status, username ]`, `[ path, remote_ip, success, action_type, username ]`, `[ path, remote_ip, status, action_type, username ]`, `[ path, success, status, action_type, username ]`, `[ true_path, remote_ip, success, status, action_type ]`, `[ true_path, remote_ip, success, status, username ]`, `[ true_path, remote_ip, success, action_type, username ]`, `[ true_path, remote_ip, status, action_type, username ]`, `[ true_path, success, status, action_type, username ]`, `[ remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success ]`, `[ start_date, end_date, path, true_path, remote_ip, status ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, username ]`, `[ start_date, end_date, path, true_path, success, status ]`, `[ start_date, end_date, path, true_path, success, action_type ]`, `[ start_date, end_date, path, true_path, success, username ]`, `[ start_date, end_date, path, true_path, status, action_type ]`, `[ start_date, end_date, path, true_path, status, username ]`, `[ start_date, end_date, path, true_path, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, status ]`, `[ start_date, end_date, path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, remote_ip, success, username ]`, `[ start_date, end_date, path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, remote_ip, status, username ]`, `[ start_date, end_date, path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, success, status, action_type ]`, `[ start_date, end_date, path, success, status, username ]`, `[ start_date, end_date, path, success, action_type, username ]`, `[ start_date, end_date, path, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, username ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, status, username ]`, `[ start_date, end_date, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, true_path, success, status, action_type ]`, `[ start_date, end_date, true_path, success, status, username ]`, `[ start_date, end_date, true_path, success, action_type, username ]`, `[ start_date, end_date, true_path, status, action_type, username ]`, `[ start_date, end_date, remote_ip, success, status, action_type ]`, `[ start_date, end_date, remote_ip, success, status, username ]`, `[ start_date, end_date, remote_ip, success, action_type, username ]`, `[ start_date, end_date, remote_ip, status, action_type, username ]`, `[ start_date, end_date, success, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, status ]`, `[ start_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, path, true_path, remote_ip, success, username ]`, `[ start_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, path, true_path, remote_ip, status, username ]`, `[ start_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, path, true_path, success, status, action_type ]`, `[ start_date, path, true_path, success, status, username ]`, `[ start_date, path, true_path, success, action_type, username ]`, `[ start_date, path, true_path, status, action_type, username ]`, `[ start_date, path, remote_ip, success, status, action_type ]`, `[ start_date, path, remote_ip, success, status, username ]`, `[ start_date, path, remote_ip, success, action_type, username ]`, `[ start_date, path, remote_ip, status, action_type, username ]`, `[ start_date, path, success, status, action_type, username ]`, `[ start_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, true_path, remote_ip, success, status, username ]`, `[ start_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, true_path, success, status, action_type, username ]`, `[ start_date, remote_ip, success, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, status ]`, `[ end_date, path, true_path, remote_ip, success, action_type ]`, `[ end_date, path, true_path, remote_ip, success, username ]`, `[ end_date, path, true_path, remote_ip, status, action_type ]`, `[ end_date, path, true_path, remote_ip, status, username ]`, `[ end_date, path, true_path, remote_ip, action_type, username ]`, `[ end_date, path, true_path, success, status, action_type ]`, `[ end_date, path, true_path, success, status, username ]`, `[ end_date, path, true_path, success, action_type, username ]`, `[ end_date, path, true_path, status, action_type, username ]`, `[ end_date, path, remote_ip, success, status, action_type ]`, `[ end_date, path, remote_ip, success, status, username ]`, `[ end_date, path, remote_ip, success, action_type, username ]`, `[ end_date, path, remote_ip, status, action_type, username ]`, `[ end_date, path, success, status, action_type, username ]`, `[ end_date, true_path, remote_ip, success, status, action_type ]`, `[ end_date, true_path, remote_ip, success, status, username ]`, `[ end_date, true_path, remote_ip, success, action_type, username ]`, `[ end_date, true_path, remote_ip, status, action_type, username ]`, `[ end_date, true_path, success, status, action_type, username ]`, `[ end_date, remote_ip, success, status, action_type, username ]`, `[ path, true_path, remote_ip, success, status, action_type ]`, `[ path, true_path, remote_ip, success, status, username ]`, `[ path, true_path, remote_ip, success, action_type, username ]`, `[ path, true_path, remote_ip, status, action_type, username ]`, `[ path, true_path, success, status, action_type, username ]`, `[ path, remote_ip, success, status, action_type, username ]`, `[ true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, true_path, success, status, action_type ]`, `[ start_date, end_date, path, true_path, success, status, username ]`, `[ start_date, end_date, path, true_path, success, action_type, username ]`, `[ start_date, end_date, path, true_path, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, success, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, true_path, success, status, action_type, username ]`, `[ start_date, end_date, remote_ip, success, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, path, true_path, success, status, action_type, username ]`, `[ start_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, true_path, remote_ip, success, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ end_date, path, true_path, remote_ip, success, status, username ]`, `[ end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ end_date, path, true_path, success, status, action_type, username ]`, `[ end_date, path, remote_ip, success, status, action_type, username ]`, `[ end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ path, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, true_path, success, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, username ]` or `[ end_date, path, true_path, remote_ip, success, status, action_type, username ]`.
|
|
59
|
-
* `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `path`, `true_path`, `status`, `action_type` or `username`. Valid field combinations are `[ start_date ]`, `[ end_date ]`, `[ path ]`, `[ true_path ]`, `[ remote_ip ]`, `[ success ]`, `[ status ]`, `[ action_type ]`, `[ username ]`, `[ start_date, end_date ]`, `[ start_date, path ]`, `[ start_date, true_path ]`, `[ start_date, remote_ip ]`, `[ start_date, success ]`, `[ start_date, status ]`, `[ start_date, action_type ]`, `[ start_date, username ]`, `[ end_date, path ]`, `[ end_date, true_path ]`, `[ end_date, remote_ip ]`, `[ end_date, success ]`, `[ end_date, status ]`, `[ end_date, action_type ]`, `[ end_date, username ]`, `[ path, true_path ]`, `[ path, remote_ip ]`, `[ path, success ]`, `[ path, status ]`, `[ path, action_type ]`, `[ path, username ]`, `[ true_path, remote_ip ]`, `[ true_path, success ]`, `[ true_path, status ]`, `[ true_path, action_type ]`, `[ true_path, username ]`, `[ remote_ip, success ]`, `[ remote_ip, status ]`, `[ remote_ip, action_type ]`, `[ remote_ip, username ]`, `[ success, status ]`, `[ success, action_type ]`, `[ success, username ]`, `[ status, action_type ]`, `[ status, username ]`, `[ action_type, username ]`, `[ start_date, end_date, path ]`, `[ start_date, end_date, true_path ]`, `[ start_date, end_date, remote_ip ]`, `[ start_date, end_date, success ]`, `[ start_date, end_date, status ]`, `[ start_date, end_date, action_type ]`, `[ start_date, end_date, username ]`, `[ start_date, path, true_path ]`, `[ start_date, path, remote_ip ]`, `[ start_date, path, success ]`, `[ start_date, path, status ]`, `[ start_date, path, action_type ]`, `[ start_date, path, username ]`, `[ start_date, true_path, remote_ip ]`, `[ start_date, true_path, success ]`, `[ start_date, true_path, status ]`, `[ start_date, true_path, action_type ]`, `[ start_date, true_path, username ]`, `[ start_date, remote_ip, success ]`, `[ start_date, remote_ip, status ]`, `[ start_date, remote_ip, action_type ]`, `[ start_date, remote_ip, username ]`, `[ start_date, success, status ]`, `[ start_date, success, action_type ]`, `[ start_date, success, username ]`, `[ start_date, status, action_type ]`, `[ start_date, status, username ]`, `[ start_date, action_type, username ]`, `[ end_date, path, true_path ]`, `[ end_date, path, remote_ip ]`, `[ end_date, path, success ]`, `[ end_date, path, status ]`, `[ end_date, path, action_type ]`, `[ end_date, path, username ]`, `[ end_date, true_path, remote_ip ]`, `[ end_date, true_path, success ]`, `[ end_date, true_path, status ]`, `[ end_date, true_path, action_type ]`, `[ end_date, true_path, username ]`, `[ end_date, remote_ip, success ]`, `[ end_date, remote_ip, status ]`, `[ end_date, remote_ip, action_type ]`, `[ end_date, remote_ip, username ]`, `[ end_date, success, status ]`, `[ end_date, success, action_type ]`, `[ end_date, success, username ]`, `[ end_date, status, action_type ]`, `[ end_date, status, username ]`, `[ end_date, action_type, username ]`, `[ path, true_path, remote_ip ]`, `[ path, true_path, success ]`, `[ path, true_path, status ]`, `[ path, true_path, action_type ]`, `[ path, true_path, username ]`, `[ path, remote_ip, success ]`, `[ path, remote_ip, status ]`, `[ path, remote_ip, action_type ]`, `[ path, remote_ip, username ]`, `[ path, success, status ]`, `[ path, success, action_type ]`, `[ path, success, username ]`, `[ path, status, action_type ]`, `[ path, status, username ]`, `[ path, action_type, username ]`, `[ true_path, remote_ip, success ]`, `[ true_path, remote_ip, status ]`, `[ true_path, remote_ip, action_type ]`, `[ true_path, remote_ip, username ]`, `[ true_path, success, status ]`, `[ true_path, success, action_type ]`, `[ true_path, success, username ]`, `[ true_path, status, action_type ]`, `[ true_path, status, username ]`, `[ true_path, action_type, username ]`, `[ remote_ip, success, status ]`, `[ remote_ip, success, action_type ]`, `[ remote_ip, success, username ]`, `[ remote_ip, status, action_type ]`, `[ remote_ip, status, username ]`, `[ remote_ip, action_type, username ]`, `[ success, status, action_type ]`, `[ success, status, username ]`, `[ success, action_type, username ]`, `[ status, action_type, username ]`, `[ start_date, end_date, path, true_path ]`, `[ start_date, end_date, path, remote_ip ]`, `[ start_date, end_date, path, success ]`, `[ start_date, end_date, path, status ]`, `[ start_date, end_date, path, action_type ]`, `[ start_date, end_date, path, username ]`, `[ start_date, end_date, true_path, remote_ip ]`, `[ start_date, end_date, true_path, success ]`, `[ start_date, end_date, true_path, status ]`, `[ start_date, end_date, true_path, action_type ]`, `[ start_date, end_date, true_path, username ]`, `[ start_date, end_date, remote_ip, success ]`, `[ start_date, end_date, remote_ip, status ]`, `[ start_date, end_date, remote_ip, action_type ]`, `[ start_date, end_date, remote_ip, username ]`, `[ start_date, end_date, success, status ]`, `[ start_date, end_date, success, action_type ]`, `[ start_date, end_date, success, username ]`, `[ start_date, end_date, status, action_type ]`, `[ start_date, end_date, status, username ]`, `[ start_date, end_date, action_type, username ]`, `[ start_date, path, true_path, remote_ip ]`, `[ start_date, path, true_path, success ]`, `[ start_date, path, true_path, status ]`, `[ start_date, path, true_path, action_type ]`, `[ start_date, path, true_path, username ]`, `[ start_date, path, remote_ip, success ]`, `[ start_date, path, remote_ip, status ]`, `[ start_date, path, remote_ip, action_type ]`, `[ start_date, path, remote_ip, username ]`, `[ start_date, path, success, status ]`, `[ start_date, path, success, action_type ]`, `[ start_date, path, success, username ]`, `[ start_date, path, status, action_type ]`, `[ start_date, path, status, username ]`, `[ start_date, path, action_type, username ]`, `[ start_date, true_path, remote_ip, success ]`, `[ start_date, true_path, remote_ip, status ]`, `[ start_date, true_path, remote_ip, action_type ]`, `[ start_date, true_path, remote_ip, username ]`, `[ start_date, true_path, success, status ]`, `[ start_date, true_path, success, action_type ]`, `[ start_date, true_path, success, username ]`, `[ start_date, true_path, status, action_type ]`, `[ start_date, true_path, status, username ]`, `[ start_date, true_path, action_type, username ]`, `[ start_date, remote_ip, success, status ]`, `[ start_date, remote_ip, success, action_type ]`, `[ start_date, remote_ip, success, username ]`, `[ start_date, remote_ip, status, action_type ]`, `[ start_date, remote_ip, status, username ]`, `[ start_date, remote_ip, action_type, username ]`, `[ start_date, success, status, action_type ]`, `[ start_date, success, status, username ]`, `[ start_date, success, action_type, username ]`, `[ start_date, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip ]`, `[ end_date, path, true_path, success ]`, `[ end_date, path, true_path, status ]`, `[ end_date, path, true_path, action_type ]`, `[ end_date, path, true_path, username ]`, `[ end_date, path, remote_ip, success ]`, `[ end_date, path, remote_ip, status ]`, `[ end_date, path, remote_ip, action_type ]`, `[ end_date, path, remote_ip, username ]`, `[ end_date, path, success, status ]`, `[ end_date, path, success, action_type ]`, `[ end_date, path, success, username ]`, `[ end_date, path, status, action_type ]`, `[ end_date, path, status, username ]`, `[ end_date, path, action_type, username ]`, `[ end_date, true_path, remote_ip, success ]`, `[ end_date, true_path, remote_ip, status ]`, `[ end_date, true_path, remote_ip, action_type ]`, `[ end_date, true_path, remote_ip, username ]`, `[ end_date, true_path, success, status ]`, `[ end_date, true_path, success, action_type ]`, `[ end_date, true_path, success, username ]`, `[ end_date, true_path, status, action_type ]`, `[ end_date, true_path, status, username ]`, `[ end_date, true_path, action_type, username ]`, `[ end_date, remote_ip, success, status ]`, `[ end_date, remote_ip, success, action_type ]`, `[ end_date, remote_ip, success, username ]`, `[ end_date, remote_ip, status, action_type ]`, `[ end_date, remote_ip, status, username ]`, `[ end_date, remote_ip, action_type, username ]`, `[ end_date, success, status, action_type ]`, `[ end_date, success, status, username ]`, `[ end_date, success, action_type, username ]`, `[ end_date, status, action_type, username ]`, `[ path, true_path, remote_ip, success ]`, `[ path, true_path, remote_ip, status ]`, `[ path, true_path, remote_ip, action_type ]`, `[ path, true_path, remote_ip, username ]`, `[ path, true_path, success, status ]`, `[ path, true_path, success, action_type ]`, `[ path, true_path, success, username ]`, `[ path, true_path, status, action_type ]`, `[ path, true_path, status, username ]`, `[ path, true_path, action_type, username ]`, `[ path, remote_ip, success, status ]`, `[ path, remote_ip, success, action_type ]`, `[ path, remote_ip, success, username ]`, `[ path, remote_ip, status, action_type ]`, `[ path, remote_ip, status, username ]`, `[ path, remote_ip, action_type, username ]`, `[ path, success, status, action_type ]`, `[ path, success, status, username ]`, `[ path, success, action_type, username ]`, `[ path, status, action_type, username ]`, `[ true_path, remote_ip, success, status ]`, `[ true_path, remote_ip, success, action_type ]`, `[ true_path, remote_ip, success, username ]`, `[ true_path, remote_ip, status, action_type ]`, `[ true_path, remote_ip, status, username ]`, `[ true_path, remote_ip, action_type, username ]`, `[ true_path, success, status, action_type ]`, `[ true_path, success, status, username ]`, `[ true_path, success, action_type, username ]`, `[ true_path, status, action_type, username ]`, `[ remote_ip, success, status, action_type ]`, `[ remote_ip, success, status, username ]`, `[ remote_ip, success, action_type, username ]`, `[ remote_ip, status, action_type, username ]`, `[ success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip ]`, `[ start_date, end_date, path, true_path, success ]`, `[ start_date, end_date, path, true_path, status ]`, `[ start_date, end_date, path, true_path, action_type ]`, `[ start_date, end_date, path, true_path, username ]`, `[ start_date, end_date, path, remote_ip, success ]`, `[ start_date, end_date, path, remote_ip, status ]`, `[ start_date, end_date, path, remote_ip, action_type ]`, `[ start_date, end_date, path, remote_ip, username ]`, `[ start_date, end_date, path, success, status ]`, `[ start_date, end_date, path, success, action_type ]`, `[ start_date, end_date, path, success, username ]`, `[ start_date, end_date, path, status, action_type ]`, `[ start_date, end_date, path, status, username ]`, `[ start_date, end_date, path, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success ]`, `[ start_date, end_date, true_path, remote_ip, status ]`, `[ start_date, end_date, true_path, remote_ip, action_type ]`, `[ start_date, end_date, true_path, remote_ip, username ]`, `[ start_date, end_date, true_path, success, status ]`, `[ start_date, end_date, true_path, success, action_type ]`, `[ start_date, end_date, true_path, success, username ]`, `[ start_date, end_date, true_path, status, action_type ]`, `[ start_date, end_date, true_path, status, username ]`, `[ start_date, end_date, true_path, action_type, username ]`, `[ start_date, end_date, remote_ip, success, status ]`, `[ start_date, end_date, remote_ip, success, action_type ]`, `[ start_date, end_date, remote_ip, success, username ]`, `[ start_date, end_date, remote_ip, status, action_type ]`, `[ start_date, end_date, remote_ip, status, username ]`, `[ start_date, end_date, remote_ip, action_type, username ]`, `[ start_date, end_date, success, status, action_type ]`, `[ start_date, end_date, success, status, username ]`, `[ start_date, end_date, success, action_type, username ]`, `[ start_date, end_date, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success ]`, `[ start_date, path, true_path, remote_ip, status ]`, `[ start_date, path, true_path, remote_ip, action_type ]`, `[ start_date, path, true_path, remote_ip, username ]`, `[ start_date, path, true_path, success, status ]`, `[ start_date, path, true_path, success, action_type ]`, `[ start_date, path, true_path, success, username ]`, `[ start_date, path, true_path, status, action_type ]`, `[ start_date, path, true_path, status, username ]`, `[ start_date, path, true_path, action_type, username ]`, `[ start_date, path, remote_ip, success, status ]`, `[ start_date, path, remote_ip, success, action_type ]`, `[ start_date, path, remote_ip, success, username ]`, `[ start_date, path, remote_ip, status, action_type ]`, `[ start_date, path, remote_ip, status, username ]`, `[ start_date, path, remote_ip, action_type, username ]`, `[ start_date, path, success, status, action_type ]`, `[ start_date, path, success, status, username ]`, `[ start_date, path, success, action_type, username ]`, `[ start_date, path, status, action_type, username ]`, `[ start_date, true_path, remote_ip, success, status ]`, `[ start_date, true_path, remote_ip, success, action_type ]`, `[ start_date, true_path, remote_ip, success, username ]`, `[ start_date, true_path, remote_ip, status, action_type ]`, `[ start_date, true_path, remote_ip, status, username ]`, `[ start_date, true_path, remote_ip, action_type, username ]`, `[ start_date, true_path, success, status, action_type ]`, `[ start_date, true_path, success, status, username ]`, `[ start_date, true_path, success, action_type, username ]`, `[ start_date, true_path, status, action_type, username ]`, `[ start_date, remote_ip, success, status, action_type ]`, `[ start_date, remote_ip, success, status, username ]`, `[ start_date, remote_ip, success, action_type, username ]`, `[ start_date, remote_ip, status, action_type, username ]`, `[ start_date, success, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success ]`, `[ end_date, path, true_path, remote_ip, status ]`, `[ end_date, path, true_path, remote_ip, action_type ]`, `[ end_date, path, true_path, remote_ip, username ]`, `[ end_date, path, true_path, success, status ]`, `[ end_date, path, true_path, success, action_type ]`, `[ end_date, path, true_path, success, username ]`, `[ end_date, path, true_path, status, action_type ]`, `[ end_date, path, true_path, status, username ]`, `[ end_date, path, true_path, action_type, username ]`, `[ end_date, path, remote_ip, success, status ]`, `[ end_date, path, remote_ip, success, action_type ]`, `[ end_date, path, remote_ip, success, username ]`, `[ end_date, path, remote_ip, status, action_type ]`, `[ end_date, path, remote_ip, status, username ]`, `[ end_date, path, remote_ip, action_type, username ]`, `[ end_date, path, success, status, action_type ]`, `[ end_date, path, success, status, username ]`, `[ end_date, path, success, action_type, username ]`, `[ end_date, path, status, action_type, username ]`, `[ end_date, true_path, remote_ip, success, status ]`, `[ end_date, true_path, remote_ip, success, action_type ]`, `[ end_date, true_path, remote_ip, success, username ]`, `[ end_date, true_path, remote_ip, status, action_type ]`, `[ end_date, true_path, remote_ip, status, username ]`, `[ end_date, true_path, remote_ip, action_type, username ]`, `[ end_date, true_path, success, status, action_type ]`, `[ end_date, true_path, success, status, username ]`, `[ end_date, true_path, success, action_type, username ]`, `[ end_date, true_path, status, action_type, username ]`, `[ end_date, remote_ip, success, status, action_type ]`, `[ end_date, remote_ip, success, status, username ]`, `[ end_date, remote_ip, success, action_type, username ]`, `[ end_date, remote_ip, status, action_type, username ]`, `[ end_date, success, status, action_type, username ]`, `[ path, true_path, remote_ip, success, status ]`, `[ path, true_path, remote_ip, success, action_type ]`, `[ path, true_path, remote_ip, success, username ]`, `[ path, true_path, remote_ip, status, action_type ]`, `[ path, true_path, remote_ip, status, username ]`, `[ path, true_path, remote_ip, action_type, username ]`, `[ path, true_path, success, status, action_type ]`, `[ path, true_path, success, status, username ]`, `[ path, true_path, success, action_type, username ]`, `[ path, true_path, status, action_type, username ]`, `[ path, remote_ip, success, status, action_type ]`, `[ path, remote_ip, success, status, username ]`, `[ path, remote_ip, success, action_type, username ]`, `[ path, remote_ip, status, action_type, username ]`, `[ path, success, status, action_type, username ]`, `[ true_path, remote_ip, success, status, action_type ]`, `[ true_path, remote_ip, success, status, username ]`, `[ true_path, remote_ip, success, action_type, username ]`, `[ true_path, remote_ip, status, action_type, username ]`, `[ true_path, success, status, action_type, username ]`, `[ remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success ]`, `[ start_date, end_date, path, true_path, remote_ip, status ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, username ]`, `[ start_date, end_date, path, true_path, success, status ]`, `[ start_date, end_date, path, true_path, success, action_type ]`, `[ start_date, end_date, path, true_path, success, username ]`, `[ start_date, end_date, path, true_path, status, action_type ]`, `[ start_date, end_date, path, true_path, status, username ]`, `[ start_date, end_date, path, true_path, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, status ]`, `[ start_date, end_date, path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, remote_ip, success, username ]`, `[ start_date, end_date, path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, remote_ip, status, username ]`, `[ start_date, end_date, path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, success, status, action_type ]`, `[ start_date, end_date, path, success, status, username ]`, `[ start_date, end_date, path, success, action_type, username ]`, `[ start_date, end_date, path, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, username ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, status, username ]`, `[ start_date, end_date, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, true_path, success, status, action_type ]`, `[ start_date, end_date, true_path, success, status, username ]`, `[ start_date, end_date, true_path, success, action_type, username ]`, `[ start_date, end_date, true_path, status, action_type, username ]`, `[ start_date, end_date, remote_ip, success, status, action_type ]`, `[ start_date, end_date, remote_ip, success, status, username ]`, `[ start_date, end_date, remote_ip, success, action_type, username ]`, `[ start_date, end_date, remote_ip, status, action_type, username ]`, `[ start_date, end_date, success, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, status ]`, `[ start_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, path, true_path, remote_ip, success, username ]`, `[ start_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, path, true_path, remote_ip, status, username ]`, `[ start_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, path, true_path, success, status, action_type ]`, `[ start_date, path, true_path, success, status, username ]`, `[ start_date, path, true_path, success, action_type, username ]`, `[ start_date, path, true_path, status, action_type, username ]`, `[ start_date, path, remote_ip, success, status, action_type ]`, `[ start_date, path, remote_ip, success, status, username ]`, `[ start_date, path, remote_ip, success, action_type, username ]`, `[ start_date, path, remote_ip, status, action_type, username ]`, `[ start_date, path, success, status, action_type, username ]`, `[ start_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, true_path, remote_ip, success, status, username ]`, `[ start_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, true_path, success, status, action_type, username ]`, `[ start_date, remote_ip, success, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, status ]`, `[ end_date, path, true_path, remote_ip, success, action_type ]`, `[ end_date, path, true_path, remote_ip, success, username ]`, `[ end_date, path, true_path, remote_ip, status, action_type ]`, `[ end_date, path, true_path, remote_ip, status, username ]`, `[ end_date, path, true_path, remote_ip, action_type, username ]`, `[ end_date, path, true_path, success, status, action_type ]`, `[ end_date, path, true_path, success, status, username ]`, `[ end_date, path, true_path, success, action_type, username ]`, `[ end_date, path, true_path, status, action_type, username ]`, `[ end_date, path, remote_ip, success, status, action_type ]`, `[ end_date, path, remote_ip, success, status, username ]`, `[ end_date, path, remote_ip, success, action_type, username ]`, `[ end_date, path, remote_ip, status, action_type, username ]`, `[ end_date, path, success, status, action_type, username ]`, `[ end_date, true_path, remote_ip, success, status, action_type ]`, `[ end_date, true_path, remote_ip, success, status, username ]`, `[ end_date, true_path, remote_ip, success, action_type, username ]`, `[ end_date, true_path, remote_ip, status, action_type, username ]`, `[ end_date, true_path, success, status, action_type, username ]`, `[ end_date, remote_ip, success, status, action_type, username ]`, `[ path, true_path, remote_ip, success, status, action_type ]`, `[ path, true_path, remote_ip, success, status, username ]`, `[ path, true_path, remote_ip, success, action_type, username ]`, `[ path, true_path, remote_ip, status, action_type, username ]`, `[ path, true_path, success, status, action_type, username ]`, `[ path, remote_ip, success, status, action_type, username ]`, `[ true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, true_path, success, status, action_type ]`, `[ start_date, end_date, path, true_path, success, status, username ]`, `[ start_date, end_date, path, true_path, success, action_type, username ]`, `[ start_date, end_date, path, true_path, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, success, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, true_path, success, status, action_type, username ]`, `[ start_date, end_date, remote_ip, success, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, path, true_path, success, status, action_type, username ]`, `[ start_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, true_path, remote_ip, success, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ end_date, path, true_path, remote_ip, success, status, username ]`, `[ end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ end_date, path, true_path, success, status, action_type, username ]`, `[ end_date, path, remote_ip, success, status, action_type, username ]`, `[ end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ path, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, true_path, success, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, username ]` or `[ end_date, path, true_path, remote_ip, success, status, action_type, username ]`.
|
|
60
|
+
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `start_date`, `end_date`, `path`, `true_path`, `remote_ip`, `success`, `status`, `action_type`, `username` or `created_at`. Valid field combinations are `[ start_date ]`, `[ end_date ]`, `[ path ]`, `[ true_path ]`, `[ remote_ip ]`, `[ success ]`, `[ status ]`, `[ action_type ]`, `[ username ]`, `[ created_at ]`, `[ start_date, end_date ]`, `[ start_date, path ]`, `[ start_date, true_path ]`, `[ start_date, remote_ip ]`, `[ start_date, success ]`, `[ start_date, status ]`, `[ start_date, action_type ]`, `[ start_date, username ]`, `[ start_date, created_at ]`, `[ end_date, path ]`, `[ end_date, true_path ]`, `[ end_date, remote_ip ]`, `[ end_date, success ]`, `[ end_date, status ]`, `[ end_date, action_type ]`, `[ end_date, username ]`, `[ end_date, created_at ]`, `[ path, true_path ]`, `[ path, remote_ip ]`, `[ path, success ]`, `[ path, status ]`, `[ path, action_type ]`, `[ path, username ]`, `[ path, created_at ]`, `[ true_path, remote_ip ]`, `[ true_path, success ]`, `[ true_path, status ]`, `[ true_path, action_type ]`, `[ true_path, username ]`, `[ true_path, created_at ]`, `[ remote_ip, success ]`, `[ remote_ip, status ]`, `[ remote_ip, action_type ]`, `[ remote_ip, username ]`, `[ remote_ip, created_at ]`, `[ success, status ]`, `[ success, action_type ]`, `[ success, username ]`, `[ success, created_at ]`, `[ status, action_type ]`, `[ status, username ]`, `[ status, created_at ]`, `[ action_type, username ]`, `[ action_type, created_at ]`, `[ username, created_at ]`, `[ start_date, end_date, path ]`, `[ start_date, end_date, true_path ]`, `[ start_date, end_date, remote_ip ]`, `[ start_date, end_date, success ]`, `[ start_date, end_date, status ]`, `[ start_date, end_date, action_type ]`, `[ start_date, end_date, username ]`, `[ start_date, end_date, created_at ]`, `[ start_date, path, true_path ]`, `[ start_date, path, remote_ip ]`, `[ start_date, path, success ]`, `[ start_date, path, status ]`, `[ start_date, path, action_type ]`, `[ start_date, path, username ]`, `[ start_date, path, created_at ]`, `[ start_date, true_path, remote_ip ]`, `[ start_date, true_path, success ]`, `[ start_date, true_path, status ]`, `[ start_date, true_path, action_type ]`, `[ start_date, true_path, username ]`, `[ start_date, true_path, created_at ]`, `[ start_date, remote_ip, success ]`, `[ start_date, remote_ip, status ]`, `[ start_date, remote_ip, action_type ]`, `[ start_date, remote_ip, username ]`, `[ start_date, remote_ip, created_at ]`, `[ start_date, success, status ]`, `[ start_date, success, action_type ]`, `[ start_date, success, username ]`, `[ start_date, success, created_at ]`, `[ start_date, status, action_type ]`, `[ start_date, status, username ]`, `[ start_date, status, created_at ]`, `[ start_date, action_type, username ]`, `[ start_date, action_type, created_at ]`, `[ start_date, username, created_at ]`, `[ end_date, path, true_path ]`, `[ end_date, path, remote_ip ]`, `[ end_date, path, success ]`, `[ end_date, path, status ]`, `[ end_date, path, action_type ]`, `[ end_date, path, username ]`, `[ end_date, path, created_at ]`, `[ end_date, true_path, remote_ip ]`, `[ end_date, true_path, success ]`, `[ end_date, true_path, status ]`, `[ end_date, true_path, action_type ]`, `[ end_date, true_path, username ]`, `[ end_date, true_path, created_at ]`, `[ end_date, remote_ip, success ]`, `[ end_date, remote_ip, status ]`, `[ end_date, remote_ip, action_type ]`, `[ end_date, remote_ip, username ]`, `[ end_date, remote_ip, created_at ]`, `[ end_date, success, status ]`, `[ end_date, success, action_type ]`, `[ end_date, success, username ]`, `[ end_date, success, created_at ]`, `[ end_date, status, action_type ]`, `[ end_date, status, username ]`, `[ end_date, status, created_at ]`, `[ end_date, action_type, username ]`, `[ end_date, action_type, created_at ]`, `[ end_date, username, created_at ]`, `[ path, true_path, remote_ip ]`, `[ path, true_path, success ]`, `[ path, true_path, status ]`, `[ path, true_path, action_type ]`, `[ path, true_path, username ]`, `[ path, true_path, created_at ]`, `[ path, remote_ip, success ]`, `[ path, remote_ip, status ]`, `[ path, remote_ip, action_type ]`, `[ path, remote_ip, username ]`, `[ path, remote_ip, created_at ]`, `[ path, success, status ]`, `[ path, success, action_type ]`, `[ path, success, username ]`, `[ path, success, created_at ]`, `[ path, status, action_type ]`, `[ path, status, username ]`, `[ path, status, created_at ]`, `[ path, action_type, username ]`, `[ path, action_type, created_at ]`, `[ path, username, created_at ]`, `[ true_path, remote_ip, success ]`, `[ true_path, remote_ip, status ]`, `[ true_path, remote_ip, action_type ]`, `[ true_path, remote_ip, username ]`, `[ true_path, remote_ip, created_at ]`, `[ true_path, success, status ]`, `[ true_path, success, action_type ]`, `[ true_path, success, username ]`, `[ true_path, success, created_at ]`, `[ true_path, status, action_type ]`, `[ true_path, status, username ]`, `[ true_path, status, created_at ]`, `[ true_path, action_type, username ]`, `[ true_path, action_type, created_at ]`, `[ true_path, username, created_at ]`, `[ remote_ip, success, status ]`, `[ remote_ip, success, action_type ]`, `[ remote_ip, success, username ]`, `[ remote_ip, success, created_at ]`, `[ remote_ip, status, action_type ]`, `[ remote_ip, status, username ]`, `[ remote_ip, status, created_at ]`, `[ remote_ip, action_type, username ]`, `[ remote_ip, action_type, created_at ]`, `[ remote_ip, username, created_at ]`, `[ success, status, action_type ]`, `[ success, status, username ]`, `[ success, status, created_at ]`, `[ success, action_type, username ]`, `[ success, action_type, created_at ]`, `[ success, username, created_at ]`, `[ status, action_type, username ]`, `[ status, action_type, created_at ]`, `[ status, username, created_at ]`, `[ action_type, username, created_at ]`, `[ start_date, end_date, path, true_path ]`, `[ start_date, end_date, path, remote_ip ]`, `[ start_date, end_date, path, success ]`, `[ start_date, end_date, path, status ]`, `[ start_date, end_date, path, action_type ]`, `[ start_date, end_date, path, username ]`, `[ start_date, end_date, path, created_at ]`, `[ start_date, end_date, true_path, remote_ip ]`, `[ start_date, end_date, true_path, success ]`, `[ start_date, end_date, true_path, status ]`, `[ start_date, end_date, true_path, action_type ]`, `[ start_date, end_date, true_path, username ]`, `[ start_date, end_date, true_path, created_at ]`, `[ start_date, end_date, remote_ip, success ]`, `[ start_date, end_date, remote_ip, status ]`, `[ start_date, end_date, remote_ip, action_type ]`, `[ start_date, end_date, remote_ip, username ]`, `[ start_date, end_date, remote_ip, created_at ]`, `[ start_date, end_date, success, status ]`, `[ start_date, end_date, success, action_type ]`, `[ start_date, end_date, success, username ]`, `[ start_date, end_date, success, created_at ]`, `[ start_date, end_date, status, action_type ]`, `[ start_date, end_date, status, username ]`, `[ start_date, end_date, status, created_at ]`, `[ start_date, end_date, action_type, username ]`, `[ start_date, end_date, action_type, created_at ]`, `[ start_date, end_date, username, created_at ]`, `[ start_date, path, true_path, remote_ip ]`, `[ start_date, path, true_path, success ]`, `[ start_date, path, true_path, status ]`, `[ start_date, path, true_path, action_type ]`, `[ start_date, path, true_path, username ]`, `[ start_date, path, true_path, created_at ]`, `[ start_date, path, remote_ip, success ]`, `[ start_date, path, remote_ip, status ]`, `[ start_date, path, remote_ip, action_type ]`, `[ start_date, path, remote_ip, username ]`, `[ start_date, path, remote_ip, created_at ]`, `[ start_date, path, success, status ]`, `[ start_date, path, success, action_type ]`, `[ start_date, path, success, username ]`, `[ start_date, path, success, created_at ]`, `[ start_date, path, status, action_type ]`, `[ start_date, path, status, username ]`, `[ start_date, path, status, created_at ]`, `[ start_date, path, action_type, username ]`, `[ start_date, path, action_type, created_at ]`, `[ start_date, path, username, created_at ]`, `[ start_date, true_path, remote_ip, success ]`, `[ start_date, true_path, remote_ip, status ]`, `[ start_date, true_path, remote_ip, action_type ]`, `[ start_date, true_path, remote_ip, username ]`, `[ start_date, true_path, remote_ip, created_at ]`, `[ start_date, true_path, success, status ]`, `[ start_date, true_path, success, action_type ]`, `[ start_date, true_path, success, username ]`, `[ start_date, true_path, success, created_at ]`, `[ start_date, true_path, status, action_type ]`, `[ start_date, true_path, status, username ]`, `[ start_date, true_path, status, created_at ]`, `[ start_date, true_path, action_type, username ]`, `[ start_date, true_path, action_type, created_at ]`, `[ start_date, true_path, username, created_at ]`, `[ start_date, remote_ip, success, status ]`, `[ start_date, remote_ip, success, action_type ]`, `[ start_date, remote_ip, success, username ]`, `[ start_date, remote_ip, success, created_at ]`, `[ start_date, remote_ip, status, action_type ]`, `[ start_date, remote_ip, status, username ]`, `[ start_date, remote_ip, status, created_at ]`, `[ start_date, remote_ip, action_type, username ]`, `[ start_date, remote_ip, action_type, created_at ]`, `[ start_date, remote_ip, username, created_at ]`, `[ start_date, success, status, action_type ]`, `[ start_date, success, status, username ]`, `[ start_date, success, status, created_at ]`, `[ start_date, success, action_type, username ]`, `[ start_date, success, action_type, created_at ]`, `[ start_date, success, username, created_at ]`, `[ start_date, status, action_type, username ]`, `[ start_date, status, action_type, created_at ]`, `[ start_date, status, username, created_at ]`, `[ start_date, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip ]`, `[ end_date, path, true_path, success ]`, `[ end_date, path, true_path, status ]`, `[ end_date, path, true_path, action_type ]`, `[ end_date, path, true_path, username ]`, `[ end_date, path, true_path, created_at ]`, `[ end_date, path, remote_ip, success ]`, `[ end_date, path, remote_ip, status ]`, `[ end_date, path, remote_ip, action_type ]`, `[ end_date, path, remote_ip, username ]`, `[ end_date, path, remote_ip, created_at ]`, `[ end_date, path, success, status ]`, `[ end_date, path, success, action_type ]`, `[ end_date, path, success, username ]`, `[ end_date, path, success, created_at ]`, `[ end_date, path, status, action_type ]`, `[ end_date, path, status, username ]`, `[ end_date, path, status, created_at ]`, `[ end_date, path, action_type, username ]`, `[ end_date, path, action_type, created_at ]`, `[ end_date, path, username, created_at ]`, `[ end_date, true_path, remote_ip, success ]`, `[ end_date, true_path, remote_ip, status ]`, `[ end_date, true_path, remote_ip, action_type ]`, `[ end_date, true_path, remote_ip, username ]`, `[ end_date, true_path, remote_ip, created_at ]`, `[ end_date, true_path, success, status ]`, `[ end_date, true_path, success, action_type ]`, `[ end_date, true_path, success, username ]`, `[ end_date, true_path, success, created_at ]`, `[ end_date, true_path, status, action_type ]`, `[ end_date, true_path, status, username ]`, `[ end_date, true_path, status, created_at ]`, `[ end_date, true_path, action_type, username ]`, `[ end_date, true_path, action_type, created_at ]`, `[ end_date, true_path, username, created_at ]`, `[ end_date, remote_ip, success, status ]`, `[ end_date, remote_ip, success, action_type ]`, `[ end_date, remote_ip, success, username ]`, `[ end_date, remote_ip, success, created_at ]`, `[ end_date, remote_ip, status, action_type ]`, `[ end_date, remote_ip, status, username ]`, `[ end_date, remote_ip, status, created_at ]`, `[ end_date, remote_ip, action_type, username ]`, `[ end_date, remote_ip, action_type, created_at ]`, `[ end_date, remote_ip, username, created_at ]`, `[ end_date, success, status, action_type ]`, `[ end_date, success, status, username ]`, `[ end_date, success, status, created_at ]`, `[ end_date, success, action_type, username ]`, `[ end_date, success, action_type, created_at ]`, `[ end_date, success, username, created_at ]`, `[ end_date, status, action_type, username ]`, `[ end_date, status, action_type, created_at ]`, `[ end_date, status, username, created_at ]`, `[ end_date, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success ]`, `[ path, true_path, remote_ip, status ]`, `[ path, true_path, remote_ip, action_type ]`, `[ path, true_path, remote_ip, username ]`, `[ path, true_path, remote_ip, created_at ]`, `[ path, true_path, success, status ]`, `[ path, true_path, success, action_type ]`, `[ path, true_path, success, username ]`, `[ path, true_path, success, created_at ]`, `[ path, true_path, status, action_type ]`, `[ path, true_path, status, username ]`, `[ path, true_path, status, created_at ]`, `[ path, true_path, action_type, username ]`, `[ path, true_path, action_type, created_at ]`, `[ path, true_path, username, created_at ]`, `[ path, remote_ip, success, status ]`, `[ path, remote_ip, success, action_type ]`, `[ path, remote_ip, success, username ]`, `[ path, remote_ip, success, created_at ]`, `[ path, remote_ip, status, action_type ]`, `[ path, remote_ip, status, username ]`, `[ path, remote_ip, status, created_at ]`, `[ path, remote_ip, action_type, username ]`, `[ path, remote_ip, action_type, created_at ]`, `[ path, remote_ip, username, created_at ]`, `[ path, success, status, action_type ]`, `[ path, success, status, username ]`, `[ path, success, status, created_at ]`, `[ path, success, action_type, username ]`, `[ path, success, action_type, created_at ]`, `[ path, success, username, created_at ]`, `[ path, status, action_type, username ]`, `[ path, status, action_type, created_at ]`, `[ path, status, username, created_at ]`, `[ path, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status ]`, `[ true_path, remote_ip, success, action_type ]`, `[ true_path, remote_ip, success, username ]`, `[ true_path, remote_ip, success, created_at ]`, `[ true_path, remote_ip, status, action_type ]`, `[ true_path, remote_ip, status, username ]`, `[ true_path, remote_ip, status, created_at ]`, `[ true_path, remote_ip, action_type, username ]`, `[ true_path, remote_ip, action_type, created_at ]`, `[ true_path, remote_ip, username, created_at ]`, `[ true_path, success, status, action_type ]`, `[ true_path, success, status, username ]`, `[ true_path, success, status, created_at ]`, `[ true_path, success, action_type, username ]`, `[ true_path, success, action_type, created_at ]`, `[ true_path, success, username, created_at ]`, `[ true_path, status, action_type, username ]`, `[ true_path, status, action_type, created_at ]`, `[ true_path, status, username, created_at ]`, `[ true_path, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type ]`, `[ remote_ip, success, status, username ]`, `[ remote_ip, success, status, created_at ]`, `[ remote_ip, success, action_type, username ]`, `[ remote_ip, success, action_type, created_at ]`, `[ remote_ip, success, username, created_at ]`, `[ remote_ip, status, action_type, username ]`, `[ remote_ip, status, action_type, created_at ]`, `[ remote_ip, status, username, created_at ]`, `[ remote_ip, action_type, username, created_at ]`, `[ success, status, action_type, username ]`, `[ success, status, action_type, created_at ]`, `[ success, status, username, created_at ]`, `[ success, action_type, username, created_at ]`, `[ status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip ]`, `[ start_date, end_date, path, true_path, success ]`, `[ start_date, end_date, path, true_path, status ]`, `[ start_date, end_date, path, true_path, action_type ]`, `[ start_date, end_date, path, true_path, username ]`, `[ start_date, end_date, path, true_path, created_at ]`, `[ start_date, end_date, path, remote_ip, success ]`, `[ start_date, end_date, path, remote_ip, status ]`, `[ start_date, end_date, path, remote_ip, action_type ]`, `[ start_date, end_date, path, remote_ip, username ]`, `[ start_date, end_date, path, remote_ip, created_at ]`, `[ start_date, end_date, path, success, status ]`, `[ start_date, end_date, path, success, action_type ]`, `[ start_date, end_date, path, success, username ]`, `[ start_date, end_date, path, success, created_at ]`, `[ start_date, end_date, path, status, action_type ]`, `[ start_date, end_date, path, status, username ]`, `[ start_date, end_date, path, status, created_at ]`, `[ start_date, end_date, path, action_type, username ]`, `[ start_date, end_date, path, action_type, created_at ]`, `[ start_date, end_date, path, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success ]`, `[ start_date, end_date, true_path, remote_ip, status ]`, `[ start_date, end_date, true_path, remote_ip, action_type ]`, `[ start_date, end_date, true_path, remote_ip, username ]`, `[ start_date, end_date, true_path, remote_ip, created_at ]`, `[ start_date, end_date, true_path, success, status ]`, `[ start_date, end_date, true_path, success, action_type ]`, `[ start_date, end_date, true_path, success, username ]`, `[ start_date, end_date, true_path, success, created_at ]`, `[ start_date, end_date, true_path, status, action_type ]`, `[ start_date, end_date, true_path, status, username ]`, `[ start_date, end_date, true_path, status, created_at ]`, `[ start_date, end_date, true_path, action_type, username ]`, `[ start_date, end_date, true_path, action_type, created_at ]`, `[ start_date, end_date, true_path, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status ]`, `[ start_date, end_date, remote_ip, success, action_type ]`, `[ start_date, end_date, remote_ip, success, username ]`, `[ start_date, end_date, remote_ip, success, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type ]`, `[ start_date, end_date, remote_ip, status, username ]`, `[ start_date, end_date, remote_ip, status, created_at ]`, `[ start_date, end_date, remote_ip, action_type, username ]`, `[ start_date, end_date, remote_ip, action_type, created_at ]`, `[ start_date, end_date, remote_ip, username, created_at ]`, `[ start_date, end_date, success, status, action_type ]`, `[ start_date, end_date, success, status, username ]`, `[ start_date, end_date, success, status, created_at ]`, `[ start_date, end_date, success, action_type, username ]`, `[ start_date, end_date, success, action_type, created_at ]`, `[ start_date, end_date, success, username, created_at ]`, `[ start_date, end_date, status, action_type, username ]`, `[ start_date, end_date, status, action_type, created_at ]`, `[ start_date, end_date, status, username, created_at ]`, `[ start_date, end_date, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success ]`, `[ start_date, path, true_path, remote_ip, status ]`, `[ start_date, path, true_path, remote_ip, action_type ]`, `[ start_date, path, true_path, remote_ip, username ]`, `[ start_date, path, true_path, remote_ip, created_at ]`, `[ start_date, path, true_path, success, status ]`, `[ start_date, path, true_path, success, action_type ]`, `[ start_date, path, true_path, success, username ]`, `[ start_date, path, true_path, success, created_at ]`, `[ start_date, path, true_path, status, action_type ]`, `[ start_date, path, true_path, status, username ]`, `[ start_date, path, true_path, status, created_at ]`, `[ start_date, path, true_path, action_type, username ]`, `[ start_date, path, true_path, action_type, created_at ]`, `[ start_date, path, true_path, username, created_at ]`, `[ start_date, path, remote_ip, success, status ]`, `[ start_date, path, remote_ip, success, action_type ]`, `[ start_date, path, remote_ip, success, username ]`, `[ start_date, path, remote_ip, success, created_at ]`, `[ start_date, path, remote_ip, status, action_type ]`, `[ start_date, path, remote_ip, status, username ]`, `[ start_date, path, remote_ip, status, created_at ]`, `[ start_date, path, remote_ip, action_type, username ]`, `[ start_date, path, remote_ip, action_type, created_at ]`, `[ start_date, path, remote_ip, username, created_at ]`, `[ start_date, path, success, status, action_type ]`, `[ start_date, path, success, status, username ]`, `[ start_date, path, success, status, created_at ]`, `[ start_date, path, success, action_type, username ]`, `[ start_date, path, success, action_type, created_at ]`, `[ start_date, path, success, username, created_at ]`, `[ start_date, path, status, action_type, username ]`, `[ start_date, path, status, action_type, created_at ]`, `[ start_date, path, status, username, created_at ]`, `[ start_date, path, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status ]`, `[ start_date, true_path, remote_ip, success, action_type ]`, `[ start_date, true_path, remote_ip, success, username ]`, `[ start_date, true_path, remote_ip, success, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type ]`, `[ start_date, true_path, remote_ip, status, username ]`, `[ start_date, true_path, remote_ip, status, created_at ]`, `[ start_date, true_path, remote_ip, action_type, username ]`, `[ start_date, true_path, remote_ip, action_type, created_at ]`, `[ start_date, true_path, remote_ip, username, created_at ]`, `[ start_date, true_path, success, status, action_type ]`, `[ start_date, true_path, success, status, username ]`, `[ start_date, true_path, success, status, created_at ]`, `[ start_date, true_path, success, action_type, username ]`, `[ start_date, true_path, success, action_type, created_at ]`, `[ start_date, true_path, success, username, created_at ]`, `[ start_date, true_path, status, action_type, username ]`, `[ start_date, true_path, status, action_type, created_at ]`, `[ start_date, true_path, status, username, created_at ]`, `[ start_date, true_path, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type ]`, `[ start_date, remote_ip, success, status, username ]`, `[ start_date, remote_ip, success, status, created_at ]`, `[ start_date, remote_ip, success, action_type, username ]`, `[ start_date, remote_ip, success, action_type, created_at ]`, `[ start_date, remote_ip, success, username, created_at ]`, `[ start_date, remote_ip, status, action_type, username ]`, `[ start_date, remote_ip, status, action_type, created_at ]`, `[ start_date, remote_ip, status, username, created_at ]`, `[ start_date, remote_ip, action_type, username, created_at ]`, `[ start_date, success, status, action_type, username ]`, `[ start_date, success, status, action_type, created_at ]`, `[ start_date, success, status, username, created_at ]`, `[ start_date, success, action_type, username, created_at ]`, `[ start_date, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success ]`, `[ end_date, path, true_path, remote_ip, status ]`, `[ end_date, path, true_path, remote_ip, action_type ]`, `[ end_date, path, true_path, remote_ip, username ]`, `[ end_date, path, true_path, remote_ip, created_at ]`, `[ end_date, path, true_path, success, status ]`, `[ end_date, path, true_path, success, action_type ]`, `[ end_date, path, true_path, success, username ]`, `[ end_date, path, true_path, success, created_at ]`, `[ end_date, path, true_path, status, action_type ]`, `[ end_date, path, true_path, status, username ]`, `[ end_date, path, true_path, status, created_at ]`, `[ end_date, path, true_path, action_type, username ]`, `[ end_date, path, true_path, action_type, created_at ]`, `[ end_date, path, true_path, username, created_at ]`, `[ end_date, path, remote_ip, success, status ]`, `[ end_date, path, remote_ip, success, action_type ]`, `[ end_date, path, remote_ip, success, username ]`, `[ end_date, path, remote_ip, success, created_at ]`, `[ end_date, path, remote_ip, status, action_type ]`, `[ end_date, path, remote_ip, status, username ]`, `[ end_date, path, remote_ip, status, created_at ]`, `[ end_date, path, remote_ip, action_type, username ]`, `[ end_date, path, remote_ip, action_type, created_at ]`, `[ end_date, path, remote_ip, username, created_at ]`, `[ end_date, path, success, status, action_type ]`, `[ end_date, path, success, status, username ]`, `[ end_date, path, success, status, created_at ]`, `[ end_date, path, success, action_type, username ]`, `[ end_date, path, success, action_type, created_at ]`, `[ end_date, path, success, username, created_at ]`, `[ end_date, path, status, action_type, username ]`, `[ end_date, path, status, action_type, created_at ]`, `[ end_date, path, status, username, created_at ]`, `[ end_date, path, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status ]`, `[ end_date, true_path, remote_ip, success, action_type ]`, `[ end_date, true_path, remote_ip, success, username ]`, `[ end_date, true_path, remote_ip, success, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type ]`, `[ end_date, true_path, remote_ip, status, username ]`, `[ end_date, true_path, remote_ip, status, created_at ]`, `[ end_date, true_path, remote_ip, action_type, username ]`, `[ end_date, true_path, remote_ip, action_type, created_at ]`, `[ end_date, true_path, remote_ip, username, created_at ]`, `[ end_date, true_path, success, status, action_type ]`, `[ end_date, true_path, success, status, username ]`, `[ end_date, true_path, success, status, created_at ]`, `[ end_date, true_path, success, action_type, username ]`, `[ end_date, true_path, success, action_type, created_at ]`, `[ end_date, true_path, success, username, created_at ]`, `[ end_date, true_path, status, action_type, username ]`, `[ end_date, true_path, status, action_type, created_at ]`, `[ end_date, true_path, status, username, created_at ]`, `[ end_date, true_path, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type ]`, `[ end_date, remote_ip, success, status, username ]`, `[ end_date, remote_ip, success, status, created_at ]`, `[ end_date, remote_ip, success, action_type, username ]`, `[ end_date, remote_ip, success, action_type, created_at ]`, `[ end_date, remote_ip, success, username, created_at ]`, `[ end_date, remote_ip, status, action_type, username ]`, `[ end_date, remote_ip, status, action_type, created_at ]`, `[ end_date, remote_ip, status, username, created_at ]`, `[ end_date, remote_ip, action_type, username, created_at ]`, `[ end_date, success, status, action_type, username ]`, `[ end_date, success, status, action_type, created_at ]`, `[ end_date, success, status, username, created_at ]`, `[ end_date, success, action_type, username, created_at ]`, `[ end_date, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status ]`, `[ path, true_path, remote_ip, success, action_type ]`, `[ path, true_path, remote_ip, success, username ]`, `[ path, true_path, remote_ip, success, created_at ]`, `[ path, true_path, remote_ip, status, action_type ]`, `[ path, true_path, remote_ip, status, username ]`, `[ path, true_path, remote_ip, status, created_at ]`, `[ path, true_path, remote_ip, action_type, username ]`, `[ path, true_path, remote_ip, action_type, created_at ]`, `[ path, true_path, remote_ip, username, created_at ]`, `[ path, true_path, success, status, action_type ]`, `[ path, true_path, success, status, username ]`, `[ path, true_path, success, status, created_at ]`, `[ path, true_path, success, action_type, username ]`, `[ path, true_path, success, action_type, created_at ]`, `[ path, true_path, success, username, created_at ]`, `[ path, true_path, status, action_type, username ]`, `[ path, true_path, status, action_type, created_at ]`, `[ path, true_path, status, username, created_at ]`, `[ path, true_path, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type ]`, `[ path, remote_ip, success, status, username ]`, `[ path, remote_ip, success, status, created_at ]`, `[ path, remote_ip, success, action_type, username ]`, `[ path, remote_ip, success, action_type, created_at ]`, `[ path, remote_ip, success, username, created_at ]`, `[ path, remote_ip, status, action_type, username ]`, `[ path, remote_ip, status, action_type, created_at ]`, `[ path, remote_ip, status, username, created_at ]`, `[ path, remote_ip, action_type, username, created_at ]`, `[ path, success, status, action_type, username ]`, `[ path, success, status, action_type, created_at ]`, `[ path, success, status, username, created_at ]`, `[ path, success, action_type, username, created_at ]`, `[ path, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type ]`, `[ true_path, remote_ip, success, status, username ]`, `[ true_path, remote_ip, success, status, created_at ]`, `[ true_path, remote_ip, success, action_type, username ]`, `[ true_path, remote_ip, success, action_type, created_at ]`, `[ true_path, remote_ip, success, username, created_at ]`, `[ true_path, remote_ip, status, action_type, username ]`, `[ true_path, remote_ip, status, action_type, created_at ]`, `[ true_path, remote_ip, status, username, created_at ]`, `[ true_path, remote_ip, action_type, username, created_at ]`, `[ true_path, success, status, action_type, username ]`, `[ true_path, success, status, action_type, created_at ]`, `[ true_path, success, status, username, created_at ]`, `[ true_path, success, action_type, username, created_at ]`, `[ true_path, status, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type, username ]`, `[ remote_ip, success, status, action_type, created_at ]`, `[ remote_ip, success, status, username, created_at ]`, `[ remote_ip, success, action_type, username, created_at ]`, `[ remote_ip, status, action_type, username, created_at ]`, `[ success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success ]`, `[ start_date, end_date, path, true_path, remote_ip, status ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, username ]`, `[ start_date, end_date, path, true_path, remote_ip, created_at ]`, `[ start_date, end_date, path, true_path, success, status ]`, `[ start_date, end_date, path, true_path, success, action_type ]`, `[ start_date, end_date, path, true_path, success, username ]`, `[ start_date, end_date, path, true_path, success, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type ]`, `[ start_date, end_date, path, true_path, status, username ]`, `[ start_date, end_date, path, true_path, status, created_at ]`, `[ start_date, end_date, path, true_path, action_type, username ]`, `[ start_date, end_date, path, true_path, action_type, created_at ]`, `[ start_date, end_date, path, true_path, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status ]`, `[ start_date, end_date, path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, remote_ip, success, username ]`, `[ start_date, end_date, path, remote_ip, success, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, remote_ip, status, username ]`, `[ start_date, end_date, path, remote_ip, status, created_at ]`, `[ start_date, end_date, path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type ]`, `[ start_date, end_date, path, success, status, username ]`, `[ start_date, end_date, path, success, status, created_at ]`, `[ start_date, end_date, path, success, action_type, username ]`, `[ start_date, end_date, path, success, action_type, created_at ]`, `[ start_date, end_date, path, success, username, created_at ]`, `[ start_date, end_date, path, status, action_type, username ]`, `[ start_date, end_date, path, status, action_type, created_at ]`, `[ start_date, end_date, path, status, username, created_at ]`, `[ start_date, end_date, path, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, username ]`, `[ start_date, end_date, true_path, remote_ip, success, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, status, username ]`, `[ start_date, end_date, true_path, remote_ip, status, created_at ]`, `[ start_date, end_date, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type ]`, `[ start_date, end_date, true_path, success, status, username ]`, `[ start_date, end_date, true_path, success, status, created_at ]`, `[ start_date, end_date, true_path, success, action_type, username ]`, `[ start_date, end_date, true_path, success, action_type, created_at ]`, `[ start_date, end_date, true_path, success, username, created_at ]`, `[ start_date, end_date, true_path, status, action_type, username ]`, `[ start_date, end_date, true_path, status, action_type, created_at ]`, `[ start_date, end_date, true_path, status, username, created_at ]`, `[ start_date, end_date, true_path, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type ]`, `[ start_date, end_date, remote_ip, success, status, username ]`, `[ start_date, end_date, remote_ip, success, status, created_at ]`, `[ start_date, end_date, remote_ip, success, action_type, username ]`, `[ start_date, end_date, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, remote_ip, success, username, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type, username ]`, `[ start_date, end_date, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, remote_ip, status, username, created_at ]`, `[ start_date, end_date, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, success, status, action_type, username ]`, `[ start_date, end_date, success, status, action_type, created_at ]`, `[ start_date, end_date, success, status, username, created_at ]`, `[ start_date, end_date, success, action_type, username, created_at ]`, `[ start_date, end_date, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status ]`, `[ start_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, path, true_path, remote_ip, success, username ]`, `[ start_date, path, true_path, remote_ip, success, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, path, true_path, remote_ip, status, username ]`, `[ start_date, path, true_path, remote_ip, status, created_at ]`, `[ start_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, path, true_path, remote_ip, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type ]`, `[ start_date, path, true_path, success, status, username ]`, `[ start_date, path, true_path, success, status, created_at ]`, `[ start_date, path, true_path, success, action_type, username ]`, `[ start_date, path, true_path, success, action_type, created_at ]`, `[ start_date, path, true_path, success, username, created_at ]`, `[ start_date, path, true_path, status, action_type, username ]`, `[ start_date, path, true_path, status, action_type, created_at ]`, `[ start_date, path, true_path, status, username, created_at ]`, `[ start_date, path, true_path, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type ]`, `[ start_date, path, remote_ip, success, status, username ]`, `[ start_date, path, remote_ip, success, status, created_at ]`, `[ start_date, path, remote_ip, success, action_type, username ]`, `[ start_date, path, remote_ip, success, action_type, created_at ]`, `[ start_date, path, remote_ip, success, username, created_at ]`, `[ start_date, path, remote_ip, status, action_type, username ]`, `[ start_date, path, remote_ip, status, action_type, created_at ]`, `[ start_date, path, remote_ip, status, username, created_at ]`, `[ start_date, path, remote_ip, action_type, username, created_at ]`, `[ start_date, path, success, status, action_type, username ]`, `[ start_date, path, success, status, action_type, created_at ]`, `[ start_date, path, success, status, username, created_at ]`, `[ start_date, path, success, action_type, username, created_at ]`, `[ start_date, path, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, true_path, remote_ip, success, status, username ]`, `[ start_date, true_path, remote_ip, success, status, created_at ]`, `[ start_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, true_path, remote_ip, success, username, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, true_path, remote_ip, status, username, created_at ]`, `[ start_date, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, true_path, success, status, action_type, username ]`, `[ start_date, true_path, success, status, action_type, created_at ]`, `[ start_date, true_path, success, status, username, created_at ]`, `[ start_date, true_path, success, action_type, username, created_at ]`, `[ start_date, true_path, status, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type, username ]`, `[ start_date, remote_ip, success, status, action_type, created_at ]`, `[ start_date, remote_ip, success, status, username, created_at ]`, `[ start_date, remote_ip, success, action_type, username, created_at ]`, `[ start_date, remote_ip, status, action_type, username, created_at ]`, `[ start_date, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status ]`, `[ end_date, path, true_path, remote_ip, success, action_type ]`, `[ end_date, path, true_path, remote_ip, success, username ]`, `[ end_date, path, true_path, remote_ip, success, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type ]`, `[ end_date, path, true_path, remote_ip, status, username ]`, `[ end_date, path, true_path, remote_ip, status, created_at ]`, `[ end_date, path, true_path, remote_ip, action_type, username ]`, `[ end_date, path, true_path, remote_ip, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type ]`, `[ end_date, path, true_path, success, status, username ]`, `[ end_date, path, true_path, success, status, created_at ]`, `[ end_date, path, true_path, success, action_type, username ]`, `[ end_date, path, true_path, success, action_type, created_at ]`, `[ end_date, path, true_path, success, username, created_at ]`, `[ end_date, path, true_path, status, action_type, username ]`, `[ end_date, path, true_path, status, action_type, created_at ]`, `[ end_date, path, true_path, status, username, created_at ]`, `[ end_date, path, true_path, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type ]`, `[ end_date, path, remote_ip, success, status, username ]`, `[ end_date, path, remote_ip, success, status, created_at ]`, `[ end_date, path, remote_ip, success, action_type, username ]`, `[ end_date, path, remote_ip, success, action_type, created_at ]`, `[ end_date, path, remote_ip, success, username, created_at ]`, `[ end_date, path, remote_ip, status, action_type, username ]`, `[ end_date, path, remote_ip, status, action_type, created_at ]`, `[ end_date, path, remote_ip, status, username, created_at ]`, `[ end_date, path, remote_ip, action_type, username, created_at ]`, `[ end_date, path, success, status, action_type, username ]`, `[ end_date, path, success, status, action_type, created_at ]`, `[ end_date, path, success, status, username, created_at ]`, `[ end_date, path, success, action_type, username, created_at ]`, `[ end_date, path, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type ]`, `[ end_date, true_path, remote_ip, success, status, username ]`, `[ end_date, true_path, remote_ip, success, status, created_at ]`, `[ end_date, true_path, remote_ip, success, action_type, username ]`, `[ end_date, true_path, remote_ip, success, action_type, created_at ]`, `[ end_date, true_path, remote_ip, success, username, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type, username ]`, `[ end_date, true_path, remote_ip, status, action_type, created_at ]`, `[ end_date, true_path, remote_ip, status, username, created_at ]`, `[ end_date, true_path, remote_ip, action_type, username, created_at ]`, `[ end_date, true_path, success, status, action_type, username ]`, `[ end_date, true_path, success, status, action_type, created_at ]`, `[ end_date, true_path, success, status, username, created_at ]`, `[ end_date, true_path, success, action_type, username, created_at ]`, `[ end_date, true_path, status, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type, username ]`, `[ end_date, remote_ip, success, status, action_type, created_at ]`, `[ end_date, remote_ip, success, status, username, created_at ]`, `[ end_date, remote_ip, success, action_type, username, created_at ]`, `[ end_date, remote_ip, status, action_type, username, created_at ]`, `[ end_date, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type ]`, `[ path, true_path, remote_ip, success, status, username ]`, `[ path, true_path, remote_ip, success, status, created_at ]`, `[ path, true_path, remote_ip, success, action_type, username ]`, `[ path, true_path, remote_ip, success, action_type, created_at ]`, `[ path, true_path, remote_ip, success, username, created_at ]`, `[ path, true_path, remote_ip, status, action_type, username ]`, `[ path, true_path, remote_ip, status, action_type, created_at ]`, `[ path, true_path, remote_ip, status, username, created_at ]`, `[ path, true_path, remote_ip, action_type, username, created_at ]`, `[ path, true_path, success, status, action_type, username ]`, `[ path, true_path, success, status, action_type, created_at ]`, `[ path, true_path, success, status, username, created_at ]`, `[ path, true_path, success, action_type, username, created_at ]`, `[ path, true_path, status, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type, username ]`, `[ path, remote_ip, success, status, action_type, created_at ]`, `[ path, remote_ip, success, status, username, created_at ]`, `[ path, remote_ip, success, action_type, username, created_at ]`, `[ path, remote_ip, status, action_type, username, created_at ]`, `[ path, success, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type, username ]`, `[ true_path, remote_ip, success, status, action_type, created_at ]`, `[ true_path, remote_ip, success, status, username, created_at ]`, `[ true_path, remote_ip, success, action_type, username, created_at ]`, `[ true_path, remote_ip, status, action_type, username, created_at ]`, `[ true_path, success, status, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type ]`, `[ start_date, end_date, path, true_path, success, status, username ]`, `[ start_date, end_date, path, true_path, success, status, created_at ]`, `[ start_date, end_date, path, true_path, success, action_type, username ]`, `[ start_date, end_date, path, true_path, success, action_type, created_at ]`, `[ start_date, end_date, path, true_path, success, username, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type, username ]`, `[ start_date, end_date, path, true_path, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, status, username, created_at ]`, `[ start_date, end_date, path, true_path, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type, username ]`, `[ start_date, end_date, path, success, status, action_type, created_at ]`, `[ start_date, end_date, path, success, status, username, created_at ]`, `[ start_date, end_date, path, success, action_type, username, created_at ]`, `[ start_date, end_date, path, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type, username ]`, `[ start_date, end_date, true_path, success, status, action_type, created_at ]`, `[ start_date, end_date, true_path, success, status, username, created_at ]`, `[ start_date, end_date, true_path, success, action_type, username, created_at ]`, `[ start_date, end_date, true_path, status, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, path, true_path, remote_ip, success, status, created_at ]`, `[ start_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, success, username, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, status, username, created_at ]`, `[ start_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type, username ]`, `[ start_date, path, true_path, success, status, action_type, created_at ]`, `[ start_date, path, true_path, success, status, username, created_at ]`, `[ start_date, path, true_path, success, action_type, username, created_at ]`, `[ start_date, path, true_path, status, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, path, remote_ip, success, status, username, created_at ]`, `[ start_date, path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, path, success, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, true_path, success, status, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ end_date, path, true_path, remote_ip, success, status, username ]`, `[ end_date, path, true_path, remote_ip, success, status, created_at ]`, `[ end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, success, username, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, status, username, created_at ]`, `[ end_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type, username ]`, `[ end_date, path, true_path, success, status, action_type, created_at ]`, `[ end_date, path, true_path, success, status, username, created_at ]`, `[ end_date, path, true_path, success, action_type, username, created_at ]`, `[ end_date, path, true_path, status, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type, username ]`, `[ end_date, path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, path, remote_ip, success, status, username, created_at ]`, `[ end_date, path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, path, success, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ end_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, true_path, remote_ip, success, status, username, created_at ]`, `[ end_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, true_path, success, status, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type, username ]`, `[ path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ path, true_path, remote_ip, success, status, username, created_at ]`, `[ path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ path, true_path, success, status, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, success, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, success, status, username, created_at ]`, `[ start_date, end_date, path, true_path, success, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, username, created_at ]` or `[ end_date, path, true_path, remote_ip, success, status, action_type, username, created_at ]`.
|
|
61
|
+
* `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at`. Valid field combinations are `[ start_date ]`, `[ end_date ]`, `[ path ]`, `[ true_path ]`, `[ remote_ip ]`, `[ success ]`, `[ status ]`, `[ action_type ]`, `[ username ]`, `[ created_at ]`, `[ start_date, end_date ]`, `[ start_date, path ]`, `[ start_date, true_path ]`, `[ start_date, remote_ip ]`, `[ start_date, success ]`, `[ start_date, status ]`, `[ start_date, action_type ]`, `[ start_date, username ]`, `[ start_date, created_at ]`, `[ end_date, path ]`, `[ end_date, true_path ]`, `[ end_date, remote_ip ]`, `[ end_date, success ]`, `[ end_date, status ]`, `[ end_date, action_type ]`, `[ end_date, username ]`, `[ end_date, created_at ]`, `[ path, true_path ]`, `[ path, remote_ip ]`, `[ path, success ]`, `[ path, status ]`, `[ path, action_type ]`, `[ path, username ]`, `[ path, created_at ]`, `[ true_path, remote_ip ]`, `[ true_path, success ]`, `[ true_path, status ]`, `[ true_path, action_type ]`, `[ true_path, username ]`, `[ true_path, created_at ]`, `[ remote_ip, success ]`, `[ remote_ip, status ]`, `[ remote_ip, action_type ]`, `[ remote_ip, username ]`, `[ remote_ip, created_at ]`, `[ success, status ]`, `[ success, action_type ]`, `[ success, username ]`, `[ success, created_at ]`, `[ status, action_type ]`, `[ status, username ]`, `[ status, created_at ]`, `[ action_type, username ]`, `[ action_type, created_at ]`, `[ username, created_at ]`, `[ start_date, end_date, path ]`, `[ start_date, end_date, true_path ]`, `[ start_date, end_date, remote_ip ]`, `[ start_date, end_date, success ]`, `[ start_date, end_date, status ]`, `[ start_date, end_date, action_type ]`, `[ start_date, end_date, username ]`, `[ start_date, end_date, created_at ]`, `[ start_date, path, true_path ]`, `[ start_date, path, remote_ip ]`, `[ start_date, path, success ]`, `[ start_date, path, status ]`, `[ start_date, path, action_type ]`, `[ start_date, path, username ]`, `[ start_date, path, created_at ]`, `[ start_date, true_path, remote_ip ]`, `[ start_date, true_path, success ]`, `[ start_date, true_path, status ]`, `[ start_date, true_path, action_type ]`, `[ start_date, true_path, username ]`, `[ start_date, true_path, created_at ]`, `[ start_date, remote_ip, success ]`, `[ start_date, remote_ip, status ]`, `[ start_date, remote_ip, action_type ]`, `[ start_date, remote_ip, username ]`, `[ start_date, remote_ip, created_at ]`, `[ start_date, success, status ]`, `[ start_date, success, action_type ]`, `[ start_date, success, username ]`, `[ start_date, success, created_at ]`, `[ start_date, status, action_type ]`, `[ start_date, status, username ]`, `[ start_date, status, created_at ]`, `[ start_date, action_type, username ]`, `[ start_date, action_type, created_at ]`, `[ start_date, username, created_at ]`, `[ end_date, path, true_path ]`, `[ end_date, path, remote_ip ]`, `[ end_date, path, success ]`, `[ end_date, path, status ]`, `[ end_date, path, action_type ]`, `[ end_date, path, username ]`, `[ end_date, path, created_at ]`, `[ end_date, true_path, remote_ip ]`, `[ end_date, true_path, success ]`, `[ end_date, true_path, status ]`, `[ end_date, true_path, action_type ]`, `[ end_date, true_path, username ]`, `[ end_date, true_path, created_at ]`, `[ end_date, remote_ip, success ]`, `[ end_date, remote_ip, status ]`, `[ end_date, remote_ip, action_type ]`, `[ end_date, remote_ip, username ]`, `[ end_date, remote_ip, created_at ]`, `[ end_date, success, status ]`, `[ end_date, success, action_type ]`, `[ end_date, success, username ]`, `[ end_date, success, created_at ]`, `[ end_date, status, action_type ]`, `[ end_date, status, username ]`, `[ end_date, status, created_at ]`, `[ end_date, action_type, username ]`, `[ end_date, action_type, created_at ]`, `[ end_date, username, created_at ]`, `[ path, true_path, remote_ip ]`, `[ path, true_path, success ]`, `[ path, true_path, status ]`, `[ path, true_path, action_type ]`, `[ path, true_path, username ]`, `[ path, true_path, created_at ]`, `[ path, remote_ip, success ]`, `[ path, remote_ip, status ]`, `[ path, remote_ip, action_type ]`, `[ path, remote_ip, username ]`, `[ path, remote_ip, created_at ]`, `[ path, success, status ]`, `[ path, success, action_type ]`, `[ path, success, username ]`, `[ path, success, created_at ]`, `[ path, status, action_type ]`, `[ path, status, username ]`, `[ path, status, created_at ]`, `[ path, action_type, username ]`, `[ path, action_type, created_at ]`, `[ path, username, created_at ]`, `[ true_path, remote_ip, success ]`, `[ true_path, remote_ip, status ]`, `[ true_path, remote_ip, action_type ]`, `[ true_path, remote_ip, username ]`, `[ true_path, remote_ip, created_at ]`, `[ true_path, success, status ]`, `[ true_path, success, action_type ]`, `[ true_path, success, username ]`, `[ true_path, success, created_at ]`, `[ true_path, status, action_type ]`, `[ true_path, status, username ]`, `[ true_path, status, created_at ]`, `[ true_path, action_type, username ]`, `[ true_path, action_type, created_at ]`, `[ true_path, username, created_at ]`, `[ remote_ip, success, status ]`, `[ remote_ip, success, action_type ]`, `[ remote_ip, success, username ]`, `[ remote_ip, success, created_at ]`, `[ remote_ip, status, action_type ]`, `[ remote_ip, status, username ]`, `[ remote_ip, status, created_at ]`, `[ remote_ip, action_type, username ]`, `[ remote_ip, action_type, created_at ]`, `[ remote_ip, username, created_at ]`, `[ success, status, action_type ]`, `[ success, status, username ]`, `[ success, status, created_at ]`, `[ success, action_type, username ]`, `[ success, action_type, created_at ]`, `[ success, username, created_at ]`, `[ status, action_type, username ]`, `[ status, action_type, created_at ]`, `[ status, username, created_at ]`, `[ action_type, username, created_at ]`, `[ start_date, end_date, path, true_path ]`, `[ start_date, end_date, path, remote_ip ]`, `[ start_date, end_date, path, success ]`, `[ start_date, end_date, path, status ]`, `[ start_date, end_date, path, action_type ]`, `[ start_date, end_date, path, username ]`, `[ start_date, end_date, path, created_at ]`, `[ start_date, end_date, true_path, remote_ip ]`, `[ start_date, end_date, true_path, success ]`, `[ start_date, end_date, true_path, status ]`, `[ start_date, end_date, true_path, action_type ]`, `[ start_date, end_date, true_path, username ]`, `[ start_date, end_date, true_path, created_at ]`, `[ start_date, end_date, remote_ip, success ]`, `[ start_date, end_date, remote_ip, status ]`, `[ start_date, end_date, remote_ip, action_type ]`, `[ start_date, end_date, remote_ip, username ]`, `[ start_date, end_date, remote_ip, created_at ]`, `[ start_date, end_date, success, status ]`, `[ start_date, end_date, success, action_type ]`, `[ start_date, end_date, success, username ]`, `[ start_date, end_date, success, created_at ]`, `[ start_date, end_date, status, action_type ]`, `[ start_date, end_date, status, username ]`, `[ start_date, end_date, status, created_at ]`, `[ start_date, end_date, action_type, username ]`, `[ start_date, end_date, action_type, created_at ]`, `[ start_date, end_date, username, created_at ]`, `[ start_date, path, true_path, remote_ip ]`, `[ start_date, path, true_path, success ]`, `[ start_date, path, true_path, status ]`, `[ start_date, path, true_path, action_type ]`, `[ start_date, path, true_path, username ]`, `[ start_date, path, true_path, created_at ]`, `[ start_date, path, remote_ip, success ]`, `[ start_date, path, remote_ip, status ]`, `[ start_date, path, remote_ip, action_type ]`, `[ start_date, path, remote_ip, username ]`, `[ start_date, path, remote_ip, created_at ]`, `[ start_date, path, success, status ]`, `[ start_date, path, success, action_type ]`, `[ start_date, path, success, username ]`, `[ start_date, path, success, created_at ]`, `[ start_date, path, status, action_type ]`, `[ start_date, path, status, username ]`, `[ start_date, path, status, created_at ]`, `[ start_date, path, action_type, username ]`, `[ start_date, path, action_type, created_at ]`, `[ start_date, path, username, created_at ]`, `[ start_date, true_path, remote_ip, success ]`, `[ start_date, true_path, remote_ip, status ]`, `[ start_date, true_path, remote_ip, action_type ]`, `[ start_date, true_path, remote_ip, username ]`, `[ start_date, true_path, remote_ip, created_at ]`, `[ start_date, true_path, success, status ]`, `[ start_date, true_path, success, action_type ]`, `[ start_date, true_path, success, username ]`, `[ start_date, true_path, success, created_at ]`, `[ start_date, true_path, status, action_type ]`, `[ start_date, true_path, status, username ]`, `[ start_date, true_path, status, created_at ]`, `[ start_date, true_path, action_type, username ]`, `[ start_date, true_path, action_type, created_at ]`, `[ start_date, true_path, username, created_at ]`, `[ start_date, remote_ip, success, status ]`, `[ start_date, remote_ip, success, action_type ]`, `[ start_date, remote_ip, success, username ]`, `[ start_date, remote_ip, success, created_at ]`, `[ start_date, remote_ip, status, action_type ]`, `[ start_date, remote_ip, status, username ]`, `[ start_date, remote_ip, status, created_at ]`, `[ start_date, remote_ip, action_type, username ]`, `[ start_date, remote_ip, action_type, created_at ]`, `[ start_date, remote_ip, username, created_at ]`, `[ start_date, success, status, action_type ]`, `[ start_date, success, status, username ]`, `[ start_date, success, status, created_at ]`, `[ start_date, success, action_type, username ]`, `[ start_date, success, action_type, created_at ]`, `[ start_date, success, username, created_at ]`, `[ start_date, status, action_type, username ]`, `[ start_date, status, action_type, created_at ]`, `[ start_date, status, username, created_at ]`, `[ start_date, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip ]`, `[ end_date, path, true_path, success ]`, `[ end_date, path, true_path, status ]`, `[ end_date, path, true_path, action_type ]`, `[ end_date, path, true_path, username ]`, `[ end_date, path, true_path, created_at ]`, `[ end_date, path, remote_ip, success ]`, `[ end_date, path, remote_ip, status ]`, `[ end_date, path, remote_ip, action_type ]`, `[ end_date, path, remote_ip, username ]`, `[ end_date, path, remote_ip, created_at ]`, `[ end_date, path, success, status ]`, `[ end_date, path, success, action_type ]`, `[ end_date, path, success, username ]`, `[ end_date, path, success, created_at ]`, `[ end_date, path, status, action_type ]`, `[ end_date, path, status, username ]`, `[ end_date, path, status, created_at ]`, `[ end_date, path, action_type, username ]`, `[ end_date, path, action_type, created_at ]`, `[ end_date, path, username, created_at ]`, `[ end_date, true_path, remote_ip, success ]`, `[ end_date, true_path, remote_ip, status ]`, `[ end_date, true_path, remote_ip, action_type ]`, `[ end_date, true_path, remote_ip, username ]`, `[ end_date, true_path, remote_ip, created_at ]`, `[ end_date, true_path, success, status ]`, `[ end_date, true_path, success, action_type ]`, `[ end_date, true_path, success, username ]`, `[ end_date, true_path, success, created_at ]`, `[ end_date, true_path, status, action_type ]`, `[ end_date, true_path, status, username ]`, `[ end_date, true_path, status, created_at ]`, `[ end_date, true_path, action_type, username ]`, `[ end_date, true_path, action_type, created_at ]`, `[ end_date, true_path, username, created_at ]`, `[ end_date, remote_ip, success, status ]`, `[ end_date, remote_ip, success, action_type ]`, `[ end_date, remote_ip, success, username ]`, `[ end_date, remote_ip, success, created_at ]`, `[ end_date, remote_ip, status, action_type ]`, `[ end_date, remote_ip, status, username ]`, `[ end_date, remote_ip, status, created_at ]`, `[ end_date, remote_ip, action_type, username ]`, `[ end_date, remote_ip, action_type, created_at ]`, `[ end_date, remote_ip, username, created_at ]`, `[ end_date, success, status, action_type ]`, `[ end_date, success, status, username ]`, `[ end_date, success, status, created_at ]`, `[ end_date, success, action_type, username ]`, `[ end_date, success, action_type, created_at ]`, `[ end_date, success, username, created_at ]`, `[ end_date, status, action_type, username ]`, `[ end_date, status, action_type, created_at ]`, `[ end_date, status, username, created_at ]`, `[ end_date, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success ]`, `[ path, true_path, remote_ip, status ]`, `[ path, true_path, remote_ip, action_type ]`, `[ path, true_path, remote_ip, username ]`, `[ path, true_path, remote_ip, created_at ]`, `[ path, true_path, success, status ]`, `[ path, true_path, success, action_type ]`, `[ path, true_path, success, username ]`, `[ path, true_path, success, created_at ]`, `[ path, true_path, status, action_type ]`, `[ path, true_path, status, username ]`, `[ path, true_path, status, created_at ]`, `[ path, true_path, action_type, username ]`, `[ path, true_path, action_type, created_at ]`, `[ path, true_path, username, created_at ]`, `[ path, remote_ip, success, status ]`, `[ path, remote_ip, success, action_type ]`, `[ path, remote_ip, success, username ]`, `[ path, remote_ip, success, created_at ]`, `[ path, remote_ip, status, action_type ]`, `[ path, remote_ip, status, username ]`, `[ path, remote_ip, status, created_at ]`, `[ path, remote_ip, action_type, username ]`, `[ path, remote_ip, action_type, created_at ]`, `[ path, remote_ip, username, created_at ]`, `[ path, success, status, action_type ]`, `[ path, success, status, username ]`, `[ path, success, status, created_at ]`, `[ path, success, action_type, username ]`, `[ path, success, action_type, created_at ]`, `[ path, success, username, created_at ]`, `[ path, status, action_type, username ]`, `[ path, status, action_type, created_at ]`, `[ path, status, username, created_at ]`, `[ path, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status ]`, `[ true_path, remote_ip, success, action_type ]`, `[ true_path, remote_ip, success, username ]`, `[ true_path, remote_ip, success, created_at ]`, `[ true_path, remote_ip, status, action_type ]`, `[ true_path, remote_ip, status, username ]`, `[ true_path, remote_ip, status, created_at ]`, `[ true_path, remote_ip, action_type, username ]`, `[ true_path, remote_ip, action_type, created_at ]`, `[ true_path, remote_ip, username, created_at ]`, `[ true_path, success, status, action_type ]`, `[ true_path, success, status, username ]`, `[ true_path, success, status, created_at ]`, `[ true_path, success, action_type, username ]`, `[ true_path, success, action_type, created_at ]`, `[ true_path, success, username, created_at ]`, `[ true_path, status, action_type, username ]`, `[ true_path, status, action_type, created_at ]`, `[ true_path, status, username, created_at ]`, `[ true_path, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type ]`, `[ remote_ip, success, status, username ]`, `[ remote_ip, success, status, created_at ]`, `[ remote_ip, success, action_type, username ]`, `[ remote_ip, success, action_type, created_at ]`, `[ remote_ip, success, username, created_at ]`, `[ remote_ip, status, action_type, username ]`, `[ remote_ip, status, action_type, created_at ]`, `[ remote_ip, status, username, created_at ]`, `[ remote_ip, action_type, username, created_at ]`, `[ success, status, action_type, username ]`, `[ success, status, action_type, created_at ]`, `[ success, status, username, created_at ]`, `[ success, action_type, username, created_at ]`, `[ status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip ]`, `[ start_date, end_date, path, true_path, success ]`, `[ start_date, end_date, path, true_path, status ]`, `[ start_date, end_date, path, true_path, action_type ]`, `[ start_date, end_date, path, true_path, username ]`, `[ start_date, end_date, path, true_path, created_at ]`, `[ start_date, end_date, path, remote_ip, success ]`, `[ start_date, end_date, path, remote_ip, status ]`, `[ start_date, end_date, path, remote_ip, action_type ]`, `[ start_date, end_date, path, remote_ip, username ]`, `[ start_date, end_date, path, remote_ip, created_at ]`, `[ start_date, end_date, path, success, status ]`, `[ start_date, end_date, path, success, action_type ]`, `[ start_date, end_date, path, success, username ]`, `[ start_date, end_date, path, success, created_at ]`, `[ start_date, end_date, path, status, action_type ]`, `[ start_date, end_date, path, status, username ]`, `[ start_date, end_date, path, status, created_at ]`, `[ start_date, end_date, path, action_type, username ]`, `[ start_date, end_date, path, action_type, created_at ]`, `[ start_date, end_date, path, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success ]`, `[ start_date, end_date, true_path, remote_ip, status ]`, `[ start_date, end_date, true_path, remote_ip, action_type ]`, `[ start_date, end_date, true_path, remote_ip, username ]`, `[ start_date, end_date, true_path, remote_ip, created_at ]`, `[ start_date, end_date, true_path, success, status ]`, `[ start_date, end_date, true_path, success, action_type ]`, `[ start_date, end_date, true_path, success, username ]`, `[ start_date, end_date, true_path, success, created_at ]`, `[ start_date, end_date, true_path, status, action_type ]`, `[ start_date, end_date, true_path, status, username ]`, `[ start_date, end_date, true_path, status, created_at ]`, `[ start_date, end_date, true_path, action_type, username ]`, `[ start_date, end_date, true_path, action_type, created_at ]`, `[ start_date, end_date, true_path, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status ]`, `[ start_date, end_date, remote_ip, success, action_type ]`, `[ start_date, end_date, remote_ip, success, username ]`, `[ start_date, end_date, remote_ip, success, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type ]`, `[ start_date, end_date, remote_ip, status, username ]`, `[ start_date, end_date, remote_ip, status, created_at ]`, `[ start_date, end_date, remote_ip, action_type, username ]`, `[ start_date, end_date, remote_ip, action_type, created_at ]`, `[ start_date, end_date, remote_ip, username, created_at ]`, `[ start_date, end_date, success, status, action_type ]`, `[ start_date, end_date, success, status, username ]`, `[ start_date, end_date, success, status, created_at ]`, `[ start_date, end_date, success, action_type, username ]`, `[ start_date, end_date, success, action_type, created_at ]`, `[ start_date, end_date, success, username, created_at ]`, `[ start_date, end_date, status, action_type, username ]`, `[ start_date, end_date, status, action_type, created_at ]`, `[ start_date, end_date, status, username, created_at ]`, `[ start_date, end_date, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success ]`, `[ start_date, path, true_path, remote_ip, status ]`, `[ start_date, path, true_path, remote_ip, action_type ]`, `[ start_date, path, true_path, remote_ip, username ]`, `[ start_date, path, true_path, remote_ip, created_at ]`, `[ start_date, path, true_path, success, status ]`, `[ start_date, path, true_path, success, action_type ]`, `[ start_date, path, true_path, success, username ]`, `[ start_date, path, true_path, success, created_at ]`, `[ start_date, path, true_path, status, action_type ]`, `[ start_date, path, true_path, status, username ]`, `[ start_date, path, true_path, status, created_at ]`, `[ start_date, path, true_path, action_type, username ]`, `[ start_date, path, true_path, action_type, created_at ]`, `[ start_date, path, true_path, username, created_at ]`, `[ start_date, path, remote_ip, success, status ]`, `[ start_date, path, remote_ip, success, action_type ]`, `[ start_date, path, remote_ip, success, username ]`, `[ start_date, path, remote_ip, success, created_at ]`, `[ start_date, path, remote_ip, status, action_type ]`, `[ start_date, path, remote_ip, status, username ]`, `[ start_date, path, remote_ip, status, created_at ]`, `[ start_date, path, remote_ip, action_type, username ]`, `[ start_date, path, remote_ip, action_type, created_at ]`, `[ start_date, path, remote_ip, username, created_at ]`, `[ start_date, path, success, status, action_type ]`, `[ start_date, path, success, status, username ]`, `[ start_date, path, success, status, created_at ]`, `[ start_date, path, success, action_type, username ]`, `[ start_date, path, success, action_type, created_at ]`, `[ start_date, path, success, username, created_at ]`, `[ start_date, path, status, action_type, username ]`, `[ start_date, path, status, action_type, created_at ]`, `[ start_date, path, status, username, created_at ]`, `[ start_date, path, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status ]`, `[ start_date, true_path, remote_ip, success, action_type ]`, `[ start_date, true_path, remote_ip, success, username ]`, `[ start_date, true_path, remote_ip, success, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type ]`, `[ start_date, true_path, remote_ip, status, username ]`, `[ start_date, true_path, remote_ip, status, created_at ]`, `[ start_date, true_path, remote_ip, action_type, username ]`, `[ start_date, true_path, remote_ip, action_type, created_at ]`, `[ start_date, true_path, remote_ip, username, created_at ]`, `[ start_date, true_path, success, status, action_type ]`, `[ start_date, true_path, success, status, username ]`, `[ start_date, true_path, success, status, created_at ]`, `[ start_date, true_path, success, action_type, username ]`, `[ start_date, true_path, success, action_type, created_at ]`, `[ start_date, true_path, success, username, created_at ]`, `[ start_date, true_path, status, action_type, username ]`, `[ start_date, true_path, status, action_type, created_at ]`, `[ start_date, true_path, status, username, created_at ]`, `[ start_date, true_path, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type ]`, `[ start_date, remote_ip, success, status, username ]`, `[ start_date, remote_ip, success, status, created_at ]`, `[ start_date, remote_ip, success, action_type, username ]`, `[ start_date, remote_ip, success, action_type, created_at ]`, `[ start_date, remote_ip, success, username, created_at ]`, `[ start_date, remote_ip, status, action_type, username ]`, `[ start_date, remote_ip, status, action_type, created_at ]`, `[ start_date, remote_ip, status, username, created_at ]`, `[ start_date, remote_ip, action_type, username, created_at ]`, `[ start_date, success, status, action_type, username ]`, `[ start_date, success, status, action_type, created_at ]`, `[ start_date, success, status, username, created_at ]`, `[ start_date, success, action_type, username, created_at ]`, `[ start_date, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success ]`, `[ end_date, path, true_path, remote_ip, status ]`, `[ end_date, path, true_path, remote_ip, action_type ]`, `[ end_date, path, true_path, remote_ip, username ]`, `[ end_date, path, true_path, remote_ip, created_at ]`, `[ end_date, path, true_path, success, status ]`, `[ end_date, path, true_path, success, action_type ]`, `[ end_date, path, true_path, success, username ]`, `[ end_date, path, true_path, success, created_at ]`, `[ end_date, path, true_path, status, action_type ]`, `[ end_date, path, true_path, status, username ]`, `[ end_date, path, true_path, status, created_at ]`, `[ end_date, path, true_path, action_type, username ]`, `[ end_date, path, true_path, action_type, created_at ]`, `[ end_date, path, true_path, username, created_at ]`, `[ end_date, path, remote_ip, success, status ]`, `[ end_date, path, remote_ip, success, action_type ]`, `[ end_date, path, remote_ip, success, username ]`, `[ end_date, path, remote_ip, success, created_at ]`, `[ end_date, path, remote_ip, status, action_type ]`, `[ end_date, path, remote_ip, status, username ]`, `[ end_date, path, remote_ip, status, created_at ]`, `[ end_date, path, remote_ip, action_type, username ]`, `[ end_date, path, remote_ip, action_type, created_at ]`, `[ end_date, path, remote_ip, username, created_at ]`, `[ end_date, path, success, status, action_type ]`, `[ end_date, path, success, status, username ]`, `[ end_date, path, success, status, created_at ]`, `[ end_date, path, success, action_type, username ]`, `[ end_date, path, success, action_type, created_at ]`, `[ end_date, path, success, username, created_at ]`, `[ end_date, path, status, action_type, username ]`, `[ end_date, path, status, action_type, created_at ]`, `[ end_date, path, status, username, created_at ]`, `[ end_date, path, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status ]`, `[ end_date, true_path, remote_ip, success, action_type ]`, `[ end_date, true_path, remote_ip, success, username ]`, `[ end_date, true_path, remote_ip, success, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type ]`, `[ end_date, true_path, remote_ip, status, username ]`, `[ end_date, true_path, remote_ip, status, created_at ]`, `[ end_date, true_path, remote_ip, action_type, username ]`, `[ end_date, true_path, remote_ip, action_type, created_at ]`, `[ end_date, true_path, remote_ip, username, created_at ]`, `[ end_date, true_path, success, status, action_type ]`, `[ end_date, true_path, success, status, username ]`, `[ end_date, true_path, success, status, created_at ]`, `[ end_date, true_path, success, action_type, username ]`, `[ end_date, true_path, success, action_type, created_at ]`, `[ end_date, true_path, success, username, created_at ]`, `[ end_date, true_path, status, action_type, username ]`, `[ end_date, true_path, status, action_type, created_at ]`, `[ end_date, true_path, status, username, created_at ]`, `[ end_date, true_path, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type ]`, `[ end_date, remote_ip, success, status, username ]`, `[ end_date, remote_ip, success, status, created_at ]`, `[ end_date, remote_ip, success, action_type, username ]`, `[ end_date, remote_ip, success, action_type, created_at ]`, `[ end_date, remote_ip, success, username, created_at ]`, `[ end_date, remote_ip, status, action_type, username ]`, `[ end_date, remote_ip, status, action_type, created_at ]`, `[ end_date, remote_ip, status, username, created_at ]`, `[ end_date, remote_ip, action_type, username, created_at ]`, `[ end_date, success, status, action_type, username ]`, `[ end_date, success, status, action_type, created_at ]`, `[ end_date, success, status, username, created_at ]`, `[ end_date, success, action_type, username, created_at ]`, `[ end_date, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status ]`, `[ path, true_path, remote_ip, success, action_type ]`, `[ path, true_path, remote_ip, success, username ]`, `[ path, true_path, remote_ip, success, created_at ]`, `[ path, true_path, remote_ip, status, action_type ]`, `[ path, true_path, remote_ip, status, username ]`, `[ path, true_path, remote_ip, status, created_at ]`, `[ path, true_path, remote_ip, action_type, username ]`, `[ path, true_path, remote_ip, action_type, created_at ]`, `[ path, true_path, remote_ip, username, created_at ]`, `[ path, true_path, success, status, action_type ]`, `[ path, true_path, success, status, username ]`, `[ path, true_path, success, status, created_at ]`, `[ path, true_path, success, action_type, username ]`, `[ path, true_path, success, action_type, created_at ]`, `[ path, true_path, success, username, created_at ]`, `[ path, true_path, status, action_type, username ]`, `[ path, true_path, status, action_type, created_at ]`, `[ path, true_path, status, username, created_at ]`, `[ path, true_path, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type ]`, `[ path, remote_ip, success, status, username ]`, `[ path, remote_ip, success, status, created_at ]`, `[ path, remote_ip, success, action_type, username ]`, `[ path, remote_ip, success, action_type, created_at ]`, `[ path, remote_ip, success, username, created_at ]`, `[ path, remote_ip, status, action_type, username ]`, `[ path, remote_ip, status, action_type, created_at ]`, `[ path, remote_ip, status, username, created_at ]`, `[ path, remote_ip, action_type, username, created_at ]`, `[ path, success, status, action_type, username ]`, `[ path, success, status, action_type, created_at ]`, `[ path, success, status, username, created_at ]`, `[ path, success, action_type, username, created_at ]`, `[ path, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type ]`, `[ true_path, remote_ip, success, status, username ]`, `[ true_path, remote_ip, success, status, created_at ]`, `[ true_path, remote_ip, success, action_type, username ]`, `[ true_path, remote_ip, success, action_type, created_at ]`, `[ true_path, remote_ip, success, username, created_at ]`, `[ true_path, remote_ip, status, action_type, username ]`, `[ true_path, remote_ip, status, action_type, created_at ]`, `[ true_path, remote_ip, status, username, created_at ]`, `[ true_path, remote_ip, action_type, username, created_at ]`, `[ true_path, success, status, action_type, username ]`, `[ true_path, success, status, action_type, created_at ]`, `[ true_path, success, status, username, created_at ]`, `[ true_path, success, action_type, username, created_at ]`, `[ true_path, status, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type, username ]`, `[ remote_ip, success, status, action_type, created_at ]`, `[ remote_ip, success, status, username, created_at ]`, `[ remote_ip, success, action_type, username, created_at ]`, `[ remote_ip, status, action_type, username, created_at ]`, `[ success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success ]`, `[ start_date, end_date, path, true_path, remote_ip, status ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, username ]`, `[ start_date, end_date, path, true_path, remote_ip, created_at ]`, `[ start_date, end_date, path, true_path, success, status ]`, `[ start_date, end_date, path, true_path, success, action_type ]`, `[ start_date, end_date, path, true_path, success, username ]`, `[ start_date, end_date, path, true_path, success, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type ]`, `[ start_date, end_date, path, true_path, status, username ]`, `[ start_date, end_date, path, true_path, status, created_at ]`, `[ start_date, end_date, path, true_path, action_type, username ]`, `[ start_date, end_date, path, true_path, action_type, created_at ]`, `[ start_date, end_date, path, true_path, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status ]`, `[ start_date, end_date, path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, remote_ip, success, username ]`, `[ start_date, end_date, path, remote_ip, success, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, remote_ip, status, username ]`, `[ start_date, end_date, path, remote_ip, status, created_at ]`, `[ start_date, end_date, path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type ]`, `[ start_date, end_date, path, success, status, username ]`, `[ start_date, end_date, path, success, status, created_at ]`, `[ start_date, end_date, path, success, action_type, username ]`, `[ start_date, end_date, path, success, action_type, created_at ]`, `[ start_date, end_date, path, success, username, created_at ]`, `[ start_date, end_date, path, status, action_type, username ]`, `[ start_date, end_date, path, status, action_type, created_at ]`, `[ start_date, end_date, path, status, username, created_at ]`, `[ start_date, end_date, path, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, username ]`, `[ start_date, end_date, true_path, remote_ip, success, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, status, username ]`, `[ start_date, end_date, true_path, remote_ip, status, created_at ]`, `[ start_date, end_date, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type ]`, `[ start_date, end_date, true_path, success, status, username ]`, `[ start_date, end_date, true_path, success, status, created_at ]`, `[ start_date, end_date, true_path, success, action_type, username ]`, `[ start_date, end_date, true_path, success, action_type, created_at ]`, `[ start_date, end_date, true_path, success, username, created_at ]`, `[ start_date, end_date, true_path, status, action_type, username ]`, `[ start_date, end_date, true_path, status, action_type, created_at ]`, `[ start_date, end_date, true_path, status, username, created_at ]`, `[ start_date, end_date, true_path, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type ]`, `[ start_date, end_date, remote_ip, success, status, username ]`, `[ start_date, end_date, remote_ip, success, status, created_at ]`, `[ start_date, end_date, remote_ip, success, action_type, username ]`, `[ start_date, end_date, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, remote_ip, success, username, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type, username ]`, `[ start_date, end_date, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, remote_ip, status, username, created_at ]`, `[ start_date, end_date, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, success, status, action_type, username ]`, `[ start_date, end_date, success, status, action_type, created_at ]`, `[ start_date, end_date, success, status, username, created_at ]`, `[ start_date, end_date, success, action_type, username, created_at ]`, `[ start_date, end_date, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status ]`, `[ start_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, path, true_path, remote_ip, success, username ]`, `[ start_date, path, true_path, remote_ip, success, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, path, true_path, remote_ip, status, username ]`, `[ start_date, path, true_path, remote_ip, status, created_at ]`, `[ start_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, path, true_path, remote_ip, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type ]`, `[ start_date, path, true_path, success, status, username ]`, `[ start_date, path, true_path, success, status, created_at ]`, `[ start_date, path, true_path, success, action_type, username ]`, `[ start_date, path, true_path, success, action_type, created_at ]`, `[ start_date, path, true_path, success, username, created_at ]`, `[ start_date, path, true_path, status, action_type, username ]`, `[ start_date, path, true_path, status, action_type, created_at ]`, `[ start_date, path, true_path, status, username, created_at ]`, `[ start_date, path, true_path, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type ]`, `[ start_date, path, remote_ip, success, status, username ]`, `[ start_date, path, remote_ip, success, status, created_at ]`, `[ start_date, path, remote_ip, success, action_type, username ]`, `[ start_date, path, remote_ip, success, action_type, created_at ]`, `[ start_date, path, remote_ip, success, username, created_at ]`, `[ start_date, path, remote_ip, status, action_type, username ]`, `[ start_date, path, remote_ip, status, action_type, created_at ]`, `[ start_date, path, remote_ip, status, username, created_at ]`, `[ start_date, path, remote_ip, action_type, username, created_at ]`, `[ start_date, path, success, status, action_type, username ]`, `[ start_date, path, success, status, action_type, created_at ]`, `[ start_date, path, success, status, username, created_at ]`, `[ start_date, path, success, action_type, username, created_at ]`, `[ start_date, path, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, true_path, remote_ip, success, status, username ]`, `[ start_date, true_path, remote_ip, success, status, created_at ]`, `[ start_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, true_path, remote_ip, success, username, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, true_path, remote_ip, status, username, created_at ]`, `[ start_date, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, true_path, success, status, action_type, username ]`, `[ start_date, true_path, success, status, action_type, created_at ]`, `[ start_date, true_path, success, status, username, created_at ]`, `[ start_date, true_path, success, action_type, username, created_at ]`, `[ start_date, true_path, status, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type, username ]`, `[ start_date, remote_ip, success, status, action_type, created_at ]`, `[ start_date, remote_ip, success, status, username, created_at ]`, `[ start_date, remote_ip, success, action_type, username, created_at ]`, `[ start_date, remote_ip, status, action_type, username, created_at ]`, `[ start_date, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status ]`, `[ end_date, path, true_path, remote_ip, success, action_type ]`, `[ end_date, path, true_path, remote_ip, success, username ]`, `[ end_date, path, true_path, remote_ip, success, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type ]`, `[ end_date, path, true_path, remote_ip, status, username ]`, `[ end_date, path, true_path, remote_ip, status, created_at ]`, `[ end_date, path, true_path, remote_ip, action_type, username ]`, `[ end_date, path, true_path, remote_ip, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type ]`, `[ end_date, path, true_path, success, status, username ]`, `[ end_date, path, true_path, success, status, created_at ]`, `[ end_date, path, true_path, success, action_type, username ]`, `[ end_date, path, true_path, success, action_type, created_at ]`, `[ end_date, path, true_path, success, username, created_at ]`, `[ end_date, path, true_path, status, action_type, username ]`, `[ end_date, path, true_path, status, action_type, created_at ]`, `[ end_date, path, true_path, status, username, created_at ]`, `[ end_date, path, true_path, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type ]`, `[ end_date, path, remote_ip, success, status, username ]`, `[ end_date, path, remote_ip, success, status, created_at ]`, `[ end_date, path, remote_ip, success, action_type, username ]`, `[ end_date, path, remote_ip, success, action_type, created_at ]`, `[ end_date, path, remote_ip, success, username, created_at ]`, `[ end_date, path, remote_ip, status, action_type, username ]`, `[ end_date, path, remote_ip, status, action_type, created_at ]`, `[ end_date, path, remote_ip, status, username, created_at ]`, `[ end_date, path, remote_ip, action_type, username, created_at ]`, `[ end_date, path, success, status, action_type, username ]`, `[ end_date, path, success, status, action_type, created_at ]`, `[ end_date, path, success, status, username, created_at ]`, `[ end_date, path, success, action_type, username, created_at ]`, `[ end_date, path, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type ]`, `[ end_date, true_path, remote_ip, success, status, username ]`, `[ end_date, true_path, remote_ip, success, status, created_at ]`, `[ end_date, true_path, remote_ip, success, action_type, username ]`, `[ end_date, true_path, remote_ip, success, action_type, created_at ]`, `[ end_date, true_path, remote_ip, success, username, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type, username ]`, `[ end_date, true_path, remote_ip, status, action_type, created_at ]`, `[ end_date, true_path, remote_ip, status, username, created_at ]`, `[ end_date, true_path, remote_ip, action_type, username, created_at ]`, `[ end_date, true_path, success, status, action_type, username ]`, `[ end_date, true_path, success, status, action_type, created_at ]`, `[ end_date, true_path, success, status, username, created_at ]`, `[ end_date, true_path, success, action_type, username, created_at ]`, `[ end_date, true_path, status, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type, username ]`, `[ end_date, remote_ip, success, status, action_type, created_at ]`, `[ end_date, remote_ip, success, status, username, created_at ]`, `[ end_date, remote_ip, success, action_type, username, created_at ]`, `[ end_date, remote_ip, status, action_type, username, created_at ]`, `[ end_date, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type ]`, `[ path, true_path, remote_ip, success, status, username ]`, `[ path, true_path, remote_ip, success, status, created_at ]`, `[ path, true_path, remote_ip, success, action_type, username ]`, `[ path, true_path, remote_ip, success, action_type, created_at ]`, `[ path, true_path, remote_ip, success, username, created_at ]`, `[ path, true_path, remote_ip, status, action_type, username ]`, `[ path, true_path, remote_ip, status, action_type, created_at ]`, `[ path, true_path, remote_ip, status, username, created_at ]`, `[ path, true_path, remote_ip, action_type, username, created_at ]`, `[ path, true_path, success, status, action_type, username ]`, `[ path, true_path, success, status, action_type, created_at ]`, `[ path, true_path, success, status, username, created_at ]`, `[ path, true_path, success, action_type, username, created_at ]`, `[ path, true_path, status, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type, username ]`, `[ path, remote_ip, success, status, action_type, created_at ]`, `[ path, remote_ip, success, status, username, created_at ]`, `[ path, remote_ip, success, action_type, username, created_at ]`, `[ path, remote_ip, status, action_type, username, created_at ]`, `[ path, success, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type, username ]`, `[ true_path, remote_ip, success, status, action_type, created_at ]`, `[ true_path, remote_ip, success, status, username, created_at ]`, `[ true_path, remote_ip, success, action_type, username, created_at ]`, `[ true_path, remote_ip, status, action_type, username, created_at ]`, `[ true_path, success, status, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type ]`, `[ start_date, end_date, path, true_path, success, status, username ]`, `[ start_date, end_date, path, true_path, success, status, created_at ]`, `[ start_date, end_date, path, true_path, success, action_type, username ]`, `[ start_date, end_date, path, true_path, success, action_type, created_at ]`, `[ start_date, end_date, path, true_path, success, username, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type, username ]`, `[ start_date, end_date, path, true_path, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, status, username, created_at ]`, `[ start_date, end_date, path, true_path, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type, username ]`, `[ start_date, end_date, path, success, status, action_type, created_at ]`, `[ start_date, end_date, path, success, status, username, created_at ]`, `[ start_date, end_date, path, success, action_type, username, created_at ]`, `[ start_date, end_date, path, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type, username ]`, `[ start_date, end_date, true_path, success, status, action_type, created_at ]`, `[ start_date, end_date, true_path, success, status, username, created_at ]`, `[ start_date, end_date, true_path, success, action_type, username, created_at ]`, `[ start_date, end_date, true_path, status, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, path, true_path, remote_ip, success, status, created_at ]`, `[ start_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, success, username, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, status, username, created_at ]`, `[ start_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type, username ]`, `[ start_date, path, true_path, success, status, action_type, created_at ]`, `[ start_date, path, true_path, success, status, username, created_at ]`, `[ start_date, path, true_path, success, action_type, username, created_at ]`, `[ start_date, path, true_path, status, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, path, remote_ip, success, status, username, created_at ]`, `[ start_date, path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, path, success, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, true_path, success, status, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ end_date, path, true_path, remote_ip, success, status, username ]`, `[ end_date, path, true_path, remote_ip, success, status, created_at ]`, `[ end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, success, username, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, status, username, created_at ]`, `[ end_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type, username ]`, `[ end_date, path, true_path, success, status, action_type, created_at ]`, `[ end_date, path, true_path, success, status, username, created_at ]`, `[ end_date, path, true_path, success, action_type, username, created_at ]`, `[ end_date, path, true_path, status, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type, username ]`, `[ end_date, path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, path, remote_ip, success, status, username, created_at ]`, `[ end_date, path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, path, success, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ end_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, true_path, remote_ip, success, status, username, created_at ]`, `[ end_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, true_path, success, status, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type, username ]`, `[ path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ path, true_path, remote_ip, success, status, username, created_at ]`, `[ path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ path, true_path, success, status, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, success, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, success, status, username, created_at ]`, `[ start_date, end_date, path, true_path, success, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, username, created_at ]` or `[ end_date, path, true_path, remote_ip, success, status, action_type, username, created_at ]`.
|
|
62
|
+
* `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at`. Valid field combinations are `[ start_date ]`, `[ end_date ]`, `[ path ]`, `[ true_path ]`, `[ remote_ip ]`, `[ success ]`, `[ status ]`, `[ action_type ]`, `[ username ]`, `[ created_at ]`, `[ start_date, end_date ]`, `[ start_date, path ]`, `[ start_date, true_path ]`, `[ start_date, remote_ip ]`, `[ start_date, success ]`, `[ start_date, status ]`, `[ start_date, action_type ]`, `[ start_date, username ]`, `[ start_date, created_at ]`, `[ end_date, path ]`, `[ end_date, true_path ]`, `[ end_date, remote_ip ]`, `[ end_date, success ]`, `[ end_date, status ]`, `[ end_date, action_type ]`, `[ end_date, username ]`, `[ end_date, created_at ]`, `[ path, true_path ]`, `[ path, remote_ip ]`, `[ path, success ]`, `[ path, status ]`, `[ path, action_type ]`, `[ path, username ]`, `[ path, created_at ]`, `[ true_path, remote_ip ]`, `[ true_path, success ]`, `[ true_path, status ]`, `[ true_path, action_type ]`, `[ true_path, username ]`, `[ true_path, created_at ]`, `[ remote_ip, success ]`, `[ remote_ip, status ]`, `[ remote_ip, action_type ]`, `[ remote_ip, username ]`, `[ remote_ip, created_at ]`, `[ success, status ]`, `[ success, action_type ]`, `[ success, username ]`, `[ success, created_at ]`, `[ status, action_type ]`, `[ status, username ]`, `[ status, created_at ]`, `[ action_type, username ]`, `[ action_type, created_at ]`, `[ username, created_at ]`, `[ start_date, end_date, path ]`, `[ start_date, end_date, true_path ]`, `[ start_date, end_date, remote_ip ]`, `[ start_date, end_date, success ]`, `[ start_date, end_date, status ]`, `[ start_date, end_date, action_type ]`, `[ start_date, end_date, username ]`, `[ start_date, end_date, created_at ]`, `[ start_date, path, true_path ]`, `[ start_date, path, remote_ip ]`, `[ start_date, path, success ]`, `[ start_date, path, status ]`, `[ start_date, path, action_type ]`, `[ start_date, path, username ]`, `[ start_date, path, created_at ]`, `[ start_date, true_path, remote_ip ]`, `[ start_date, true_path, success ]`, `[ start_date, true_path, status ]`, `[ start_date, true_path, action_type ]`, `[ start_date, true_path, username ]`, `[ start_date, true_path, created_at ]`, `[ start_date, remote_ip, success ]`, `[ start_date, remote_ip, status ]`, `[ start_date, remote_ip, action_type ]`, `[ start_date, remote_ip, username ]`, `[ start_date, remote_ip, created_at ]`, `[ start_date, success, status ]`, `[ start_date, success, action_type ]`, `[ start_date, success, username ]`, `[ start_date, success, created_at ]`, `[ start_date, status, action_type ]`, `[ start_date, status, username ]`, `[ start_date, status, created_at ]`, `[ start_date, action_type, username ]`, `[ start_date, action_type, created_at ]`, `[ start_date, username, created_at ]`, `[ end_date, path, true_path ]`, `[ end_date, path, remote_ip ]`, `[ end_date, path, success ]`, `[ end_date, path, status ]`, `[ end_date, path, action_type ]`, `[ end_date, path, username ]`, `[ end_date, path, created_at ]`, `[ end_date, true_path, remote_ip ]`, `[ end_date, true_path, success ]`, `[ end_date, true_path, status ]`, `[ end_date, true_path, action_type ]`, `[ end_date, true_path, username ]`, `[ end_date, true_path, created_at ]`, `[ end_date, remote_ip, success ]`, `[ end_date, remote_ip, status ]`, `[ end_date, remote_ip, action_type ]`, `[ end_date, remote_ip, username ]`, `[ end_date, remote_ip, created_at ]`, `[ end_date, success, status ]`, `[ end_date, success, action_type ]`, `[ end_date, success, username ]`, `[ end_date, success, created_at ]`, `[ end_date, status, action_type ]`, `[ end_date, status, username ]`, `[ end_date, status, created_at ]`, `[ end_date, action_type, username ]`, `[ end_date, action_type, created_at ]`, `[ end_date, username, created_at ]`, `[ path, true_path, remote_ip ]`, `[ path, true_path, success ]`, `[ path, true_path, status ]`, `[ path, true_path, action_type ]`, `[ path, true_path, username ]`, `[ path, true_path, created_at ]`, `[ path, remote_ip, success ]`, `[ path, remote_ip, status ]`, `[ path, remote_ip, action_type ]`, `[ path, remote_ip, username ]`, `[ path, remote_ip, created_at ]`, `[ path, success, status ]`, `[ path, success, action_type ]`, `[ path, success, username ]`, `[ path, success, created_at ]`, `[ path, status, action_type ]`, `[ path, status, username ]`, `[ path, status, created_at ]`, `[ path, action_type, username ]`, `[ path, action_type, created_at ]`, `[ path, username, created_at ]`, `[ true_path, remote_ip, success ]`, `[ true_path, remote_ip, status ]`, `[ true_path, remote_ip, action_type ]`, `[ true_path, remote_ip, username ]`, `[ true_path, remote_ip, created_at ]`, `[ true_path, success, status ]`, `[ true_path, success, action_type ]`, `[ true_path, success, username ]`, `[ true_path, success, created_at ]`, `[ true_path, status, action_type ]`, `[ true_path, status, username ]`, `[ true_path, status, created_at ]`, `[ true_path, action_type, username ]`, `[ true_path, action_type, created_at ]`, `[ true_path, username, created_at ]`, `[ remote_ip, success, status ]`, `[ remote_ip, success, action_type ]`, `[ remote_ip, success, username ]`, `[ remote_ip, success, created_at ]`, `[ remote_ip, status, action_type ]`, `[ remote_ip, status, username ]`, `[ remote_ip, status, created_at ]`, `[ remote_ip, action_type, username ]`, `[ remote_ip, action_type, created_at ]`, `[ remote_ip, username, created_at ]`, `[ success, status, action_type ]`, `[ success, status, username ]`, `[ success, status, created_at ]`, `[ success, action_type, username ]`, `[ success, action_type, created_at ]`, `[ success, username, created_at ]`, `[ status, action_type, username ]`, `[ status, action_type, created_at ]`, `[ status, username, created_at ]`, `[ action_type, username, created_at ]`, `[ start_date, end_date, path, true_path ]`, `[ start_date, end_date, path, remote_ip ]`, `[ start_date, end_date, path, success ]`, `[ start_date, end_date, path, status ]`, `[ start_date, end_date, path, action_type ]`, `[ start_date, end_date, path, username ]`, `[ start_date, end_date, path, created_at ]`, `[ start_date, end_date, true_path, remote_ip ]`, `[ start_date, end_date, true_path, success ]`, `[ start_date, end_date, true_path, status ]`, `[ start_date, end_date, true_path, action_type ]`, `[ start_date, end_date, true_path, username ]`, `[ start_date, end_date, true_path, created_at ]`, `[ start_date, end_date, remote_ip, success ]`, `[ start_date, end_date, remote_ip, status ]`, `[ start_date, end_date, remote_ip, action_type ]`, `[ start_date, end_date, remote_ip, username ]`, `[ start_date, end_date, remote_ip, created_at ]`, `[ start_date, end_date, success, status ]`, `[ start_date, end_date, success, action_type ]`, `[ start_date, end_date, success, username ]`, `[ start_date, end_date, success, created_at ]`, `[ start_date, end_date, status, action_type ]`, `[ start_date, end_date, status, username ]`, `[ start_date, end_date, status, created_at ]`, `[ start_date, end_date, action_type, username ]`, `[ start_date, end_date, action_type, created_at ]`, `[ start_date, end_date, username, created_at ]`, `[ start_date, path, true_path, remote_ip ]`, `[ start_date, path, true_path, success ]`, `[ start_date, path, true_path, status ]`, `[ start_date, path, true_path, action_type ]`, `[ start_date, path, true_path, username ]`, `[ start_date, path, true_path, created_at ]`, `[ start_date, path, remote_ip, success ]`, `[ start_date, path, remote_ip, status ]`, `[ start_date, path, remote_ip, action_type ]`, `[ start_date, path, remote_ip, username ]`, `[ start_date, path, remote_ip, created_at ]`, `[ start_date, path, success, status ]`, `[ start_date, path, success, action_type ]`, `[ start_date, path, success, username ]`, `[ start_date, path, success, created_at ]`, `[ start_date, path, status, action_type ]`, `[ start_date, path, status, username ]`, `[ start_date, path, status, created_at ]`, `[ start_date, path, action_type, username ]`, `[ start_date, path, action_type, created_at ]`, `[ start_date, path, username, created_at ]`, `[ start_date, true_path, remote_ip, success ]`, `[ start_date, true_path, remote_ip, status ]`, `[ start_date, true_path, remote_ip, action_type ]`, `[ start_date, true_path, remote_ip, username ]`, `[ start_date, true_path, remote_ip, created_at ]`, `[ start_date, true_path, success, status ]`, `[ start_date, true_path, success, action_type ]`, `[ start_date, true_path, success, username ]`, `[ start_date, true_path, success, created_at ]`, `[ start_date, true_path, status, action_type ]`, `[ start_date, true_path, status, username ]`, `[ start_date, true_path, status, created_at ]`, `[ start_date, true_path, action_type, username ]`, `[ start_date, true_path, action_type, created_at ]`, `[ start_date, true_path, username, created_at ]`, `[ start_date, remote_ip, success, status ]`, `[ start_date, remote_ip, success, action_type ]`, `[ start_date, remote_ip, success, username ]`, `[ start_date, remote_ip, success, created_at ]`, `[ start_date, remote_ip, status, action_type ]`, `[ start_date, remote_ip, status, username ]`, `[ start_date, remote_ip, status, created_at ]`, `[ start_date, remote_ip, action_type, username ]`, `[ start_date, remote_ip, action_type, created_at ]`, `[ start_date, remote_ip, username, created_at ]`, `[ start_date, success, status, action_type ]`, `[ start_date, success, status, username ]`, `[ start_date, success, status, created_at ]`, `[ start_date, success, action_type, username ]`, `[ start_date, success, action_type, created_at ]`, `[ start_date, success, username, created_at ]`, `[ start_date, status, action_type, username ]`, `[ start_date, status, action_type, created_at ]`, `[ start_date, status, username, created_at ]`, `[ start_date, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip ]`, `[ end_date, path, true_path, success ]`, `[ end_date, path, true_path, status ]`, `[ end_date, path, true_path, action_type ]`, `[ end_date, path, true_path, username ]`, `[ end_date, path, true_path, created_at ]`, `[ end_date, path, remote_ip, success ]`, `[ end_date, path, remote_ip, status ]`, `[ end_date, path, remote_ip, action_type ]`, `[ end_date, path, remote_ip, username ]`, `[ end_date, path, remote_ip, created_at ]`, `[ end_date, path, success, status ]`, `[ end_date, path, success, action_type ]`, `[ end_date, path, success, username ]`, `[ end_date, path, success, created_at ]`, `[ end_date, path, status, action_type ]`, `[ end_date, path, status, username ]`, `[ end_date, path, status, created_at ]`, `[ end_date, path, action_type, username ]`, `[ end_date, path, action_type, created_at ]`, `[ end_date, path, username, created_at ]`, `[ end_date, true_path, remote_ip, success ]`, `[ end_date, true_path, remote_ip, status ]`, `[ end_date, true_path, remote_ip, action_type ]`, `[ end_date, true_path, remote_ip, username ]`, `[ end_date, true_path, remote_ip, created_at ]`, `[ end_date, true_path, success, status ]`, `[ end_date, true_path, success, action_type ]`, `[ end_date, true_path, success, username ]`, `[ end_date, true_path, success, created_at ]`, `[ end_date, true_path, status, action_type ]`, `[ end_date, true_path, status, username ]`, `[ end_date, true_path, status, created_at ]`, `[ end_date, true_path, action_type, username ]`, `[ end_date, true_path, action_type, created_at ]`, `[ end_date, true_path, username, created_at ]`, `[ end_date, remote_ip, success, status ]`, `[ end_date, remote_ip, success, action_type ]`, `[ end_date, remote_ip, success, username ]`, `[ end_date, remote_ip, success, created_at ]`, `[ end_date, remote_ip, status, action_type ]`, `[ end_date, remote_ip, status, username ]`, `[ end_date, remote_ip, status, created_at ]`, `[ end_date, remote_ip, action_type, username ]`, `[ end_date, remote_ip, action_type, created_at ]`, `[ end_date, remote_ip, username, created_at ]`, `[ end_date, success, status, action_type ]`, `[ end_date, success, status, username ]`, `[ end_date, success, status, created_at ]`, `[ end_date, success, action_type, username ]`, `[ end_date, success, action_type, created_at ]`, `[ end_date, success, username, created_at ]`, `[ end_date, status, action_type, username ]`, `[ end_date, status, action_type, created_at ]`, `[ end_date, status, username, created_at ]`, `[ end_date, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success ]`, `[ path, true_path, remote_ip, status ]`, `[ path, true_path, remote_ip, action_type ]`, `[ path, true_path, remote_ip, username ]`, `[ path, true_path, remote_ip, created_at ]`, `[ path, true_path, success, status ]`, `[ path, true_path, success, action_type ]`, `[ path, true_path, success, username ]`, `[ path, true_path, success, created_at ]`, `[ path, true_path, status, action_type ]`, `[ path, true_path, status, username ]`, `[ path, true_path, status, created_at ]`, `[ path, true_path, action_type, username ]`, `[ path, true_path, action_type, created_at ]`, `[ path, true_path, username, created_at ]`, `[ path, remote_ip, success, status ]`, `[ path, remote_ip, success, action_type ]`, `[ path, remote_ip, success, username ]`, `[ path, remote_ip, success, created_at ]`, `[ path, remote_ip, status, action_type ]`, `[ path, remote_ip, status, username ]`, `[ path, remote_ip, status, created_at ]`, `[ path, remote_ip, action_type, username ]`, `[ path, remote_ip, action_type, created_at ]`, `[ path, remote_ip, username, created_at ]`, `[ path, success, status, action_type ]`, `[ path, success, status, username ]`, `[ path, success, status, created_at ]`, `[ path, success, action_type, username ]`, `[ path, success, action_type, created_at ]`, `[ path, success, username, created_at ]`, `[ path, status, action_type, username ]`, `[ path, status, action_type, created_at ]`, `[ path, status, username, created_at ]`, `[ path, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status ]`, `[ true_path, remote_ip, success, action_type ]`, `[ true_path, remote_ip, success, username ]`, `[ true_path, remote_ip, success, created_at ]`, `[ true_path, remote_ip, status, action_type ]`, `[ true_path, remote_ip, status, username ]`, `[ true_path, remote_ip, status, created_at ]`, `[ true_path, remote_ip, action_type, username ]`, `[ true_path, remote_ip, action_type, created_at ]`, `[ true_path, remote_ip, username, created_at ]`, `[ true_path, success, status, action_type ]`, `[ true_path, success, status, username ]`, `[ true_path, success, status, created_at ]`, `[ true_path, success, action_type, username ]`, `[ true_path, success, action_type, created_at ]`, `[ true_path, success, username, created_at ]`, `[ true_path, status, action_type, username ]`, `[ true_path, status, action_type, created_at ]`, `[ true_path, status, username, created_at ]`, `[ true_path, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type ]`, `[ remote_ip, success, status, username ]`, `[ remote_ip, success, status, created_at ]`, `[ remote_ip, success, action_type, username ]`, `[ remote_ip, success, action_type, created_at ]`, `[ remote_ip, success, username, created_at ]`, `[ remote_ip, status, action_type, username ]`, `[ remote_ip, status, action_type, created_at ]`, `[ remote_ip, status, username, created_at ]`, `[ remote_ip, action_type, username, created_at ]`, `[ success, status, action_type, username ]`, `[ success, status, action_type, created_at ]`, `[ success, status, username, created_at ]`, `[ success, action_type, username, created_at ]`, `[ status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip ]`, `[ start_date, end_date, path, true_path, success ]`, `[ start_date, end_date, path, true_path, status ]`, `[ start_date, end_date, path, true_path, action_type ]`, `[ start_date, end_date, path, true_path, username ]`, `[ start_date, end_date, path, true_path, created_at ]`, `[ start_date, end_date, path, remote_ip, success ]`, `[ start_date, end_date, path, remote_ip, status ]`, `[ start_date, end_date, path, remote_ip, action_type ]`, `[ start_date, end_date, path, remote_ip, username ]`, `[ start_date, end_date, path, remote_ip, created_at ]`, `[ start_date, end_date, path, success, status ]`, `[ start_date, end_date, path, success, action_type ]`, `[ start_date, end_date, path, success, username ]`, `[ start_date, end_date, path, success, created_at ]`, `[ start_date, end_date, path, status, action_type ]`, `[ start_date, end_date, path, status, username ]`, `[ start_date, end_date, path, status, created_at ]`, `[ start_date, end_date, path, action_type, username ]`, `[ start_date, end_date, path, action_type, created_at ]`, `[ start_date, end_date, path, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success ]`, `[ start_date, end_date, true_path, remote_ip, status ]`, `[ start_date, end_date, true_path, remote_ip, action_type ]`, `[ start_date, end_date, true_path, remote_ip, username ]`, `[ start_date, end_date, true_path, remote_ip, created_at ]`, `[ start_date, end_date, true_path, success, status ]`, `[ start_date, end_date, true_path, success, action_type ]`, `[ start_date, end_date, true_path, success, username ]`, `[ start_date, end_date, true_path, success, created_at ]`, `[ start_date, end_date, true_path, status, action_type ]`, `[ start_date, end_date, true_path, status, username ]`, `[ start_date, end_date, true_path, status, created_at ]`, `[ start_date, end_date, true_path, action_type, username ]`, `[ start_date, end_date, true_path, action_type, created_at ]`, `[ start_date, end_date, true_path, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status ]`, `[ start_date, end_date, remote_ip, success, action_type ]`, `[ start_date, end_date, remote_ip, success, username ]`, `[ start_date, end_date, remote_ip, success, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type ]`, `[ start_date, end_date, remote_ip, status, username ]`, `[ start_date, end_date, remote_ip, status, created_at ]`, `[ start_date, end_date, remote_ip, action_type, username ]`, `[ start_date, end_date, remote_ip, action_type, created_at ]`, `[ start_date, end_date, remote_ip, username, created_at ]`, `[ start_date, end_date, success, status, action_type ]`, `[ start_date, end_date, success, status, username ]`, `[ start_date, end_date, success, status, created_at ]`, `[ start_date, end_date, success, action_type, username ]`, `[ start_date, end_date, success, action_type, created_at ]`, `[ start_date, end_date, success, username, created_at ]`, `[ start_date, end_date, status, action_type, username ]`, `[ start_date, end_date, status, action_type, created_at ]`, `[ start_date, end_date, status, username, created_at ]`, `[ start_date, end_date, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success ]`, `[ start_date, path, true_path, remote_ip, status ]`, `[ start_date, path, true_path, remote_ip, action_type ]`, `[ start_date, path, true_path, remote_ip, username ]`, `[ start_date, path, true_path, remote_ip, created_at ]`, `[ start_date, path, true_path, success, status ]`, `[ start_date, path, true_path, success, action_type ]`, `[ start_date, path, true_path, success, username ]`, `[ start_date, path, true_path, success, created_at ]`, `[ start_date, path, true_path, status, action_type ]`, `[ start_date, path, true_path, status, username ]`, `[ start_date, path, true_path, status, created_at ]`, `[ start_date, path, true_path, action_type, username ]`, `[ start_date, path, true_path, action_type, created_at ]`, `[ start_date, path, true_path, username, created_at ]`, `[ start_date, path, remote_ip, success, status ]`, `[ start_date, path, remote_ip, success, action_type ]`, `[ start_date, path, remote_ip, success, username ]`, `[ start_date, path, remote_ip, success, created_at ]`, `[ start_date, path, remote_ip, status, action_type ]`, `[ start_date, path, remote_ip, status, username ]`, `[ start_date, path, remote_ip, status, created_at ]`, `[ start_date, path, remote_ip, action_type, username ]`, `[ start_date, path, remote_ip, action_type, created_at ]`, `[ start_date, path, remote_ip, username, created_at ]`, `[ start_date, path, success, status, action_type ]`, `[ start_date, path, success, status, username ]`, `[ start_date, path, success, status, created_at ]`, `[ start_date, path, success, action_type, username ]`, `[ start_date, path, success, action_type, created_at ]`, `[ start_date, path, success, username, created_at ]`, `[ start_date, path, status, action_type, username ]`, `[ start_date, path, status, action_type, created_at ]`, `[ start_date, path, status, username, created_at ]`, `[ start_date, path, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status ]`, `[ start_date, true_path, remote_ip, success, action_type ]`, `[ start_date, true_path, remote_ip, success, username ]`, `[ start_date, true_path, remote_ip, success, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type ]`, `[ start_date, true_path, remote_ip, status, username ]`, `[ start_date, true_path, remote_ip, status, created_at ]`, `[ start_date, true_path, remote_ip, action_type, username ]`, `[ start_date, true_path, remote_ip, action_type, created_at ]`, `[ start_date, true_path, remote_ip, username, created_at ]`, `[ start_date, true_path, success, status, action_type ]`, `[ start_date, true_path, success, status, username ]`, `[ start_date, true_path, success, status, created_at ]`, `[ start_date, true_path, success, action_type, username ]`, `[ start_date, true_path, success, action_type, created_at ]`, `[ start_date, true_path, success, username, created_at ]`, `[ start_date, true_path, status, action_type, username ]`, `[ start_date, true_path, status, action_type, created_at ]`, `[ start_date, true_path, status, username, created_at ]`, `[ start_date, true_path, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type ]`, `[ start_date, remote_ip, success, status, username ]`, `[ start_date, remote_ip, success, status, created_at ]`, `[ start_date, remote_ip, success, action_type, username ]`, `[ start_date, remote_ip, success, action_type, created_at ]`, `[ start_date, remote_ip, success, username, created_at ]`, `[ start_date, remote_ip, status, action_type, username ]`, `[ start_date, remote_ip, status, action_type, created_at ]`, `[ start_date, remote_ip, status, username, created_at ]`, `[ start_date, remote_ip, action_type, username, created_at ]`, `[ start_date, success, status, action_type, username ]`, `[ start_date, success, status, action_type, created_at ]`, `[ start_date, success, status, username, created_at ]`, `[ start_date, success, action_type, username, created_at ]`, `[ start_date, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success ]`, `[ end_date, path, true_path, remote_ip, status ]`, `[ end_date, path, true_path, remote_ip, action_type ]`, `[ end_date, path, true_path, remote_ip, username ]`, `[ end_date, path, true_path, remote_ip, created_at ]`, `[ end_date, path, true_path, success, status ]`, `[ end_date, path, true_path, success, action_type ]`, `[ end_date, path, true_path, success, username ]`, `[ end_date, path, true_path, success, created_at ]`, `[ end_date, path, true_path, status, action_type ]`, `[ end_date, path, true_path, status, username ]`, `[ end_date, path, true_path, status, created_at ]`, `[ end_date, path, true_path, action_type, username ]`, `[ end_date, path, true_path, action_type, created_at ]`, `[ end_date, path, true_path, username, created_at ]`, `[ end_date, path, remote_ip, success, status ]`, `[ end_date, path, remote_ip, success, action_type ]`, `[ end_date, path, remote_ip, success, username ]`, `[ end_date, path, remote_ip, success, created_at ]`, `[ end_date, path, remote_ip, status, action_type ]`, `[ end_date, path, remote_ip, status, username ]`, `[ end_date, path, remote_ip, status, created_at ]`, `[ end_date, path, remote_ip, action_type, username ]`, `[ end_date, path, remote_ip, action_type, created_at ]`, `[ end_date, path, remote_ip, username, created_at ]`, `[ end_date, path, success, status, action_type ]`, `[ end_date, path, success, status, username ]`, `[ end_date, path, success, status, created_at ]`, `[ end_date, path, success, action_type, username ]`, `[ end_date, path, success, action_type, created_at ]`, `[ end_date, path, success, username, created_at ]`, `[ end_date, path, status, action_type, username ]`, `[ end_date, path, status, action_type, created_at ]`, `[ end_date, path, status, username, created_at ]`, `[ end_date, path, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status ]`, `[ end_date, true_path, remote_ip, success, action_type ]`, `[ end_date, true_path, remote_ip, success, username ]`, `[ end_date, true_path, remote_ip, success, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type ]`, `[ end_date, true_path, remote_ip, status, username ]`, `[ end_date, true_path, remote_ip, status, created_at ]`, `[ end_date, true_path, remote_ip, action_type, username ]`, `[ end_date, true_path, remote_ip, action_type, created_at ]`, `[ end_date, true_path, remote_ip, username, created_at ]`, `[ end_date, true_path, success, status, action_type ]`, `[ end_date, true_path, success, status, username ]`, `[ end_date, true_path, success, status, created_at ]`, `[ end_date, true_path, success, action_type, username ]`, `[ end_date, true_path, success, action_type, created_at ]`, `[ end_date, true_path, success, username, created_at ]`, `[ end_date, true_path, status, action_type, username ]`, `[ end_date, true_path, status, action_type, created_at ]`, `[ end_date, true_path, status, username, created_at ]`, `[ end_date, true_path, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type ]`, `[ end_date, remote_ip, success, status, username ]`, `[ end_date, remote_ip, success, status, created_at ]`, `[ end_date, remote_ip, success, action_type, username ]`, `[ end_date, remote_ip, success, action_type, created_at ]`, `[ end_date, remote_ip, success, username, created_at ]`, `[ end_date, remote_ip, status, action_type, username ]`, `[ end_date, remote_ip, status, action_type, created_at ]`, `[ end_date, remote_ip, status, username, created_at ]`, `[ end_date, remote_ip, action_type, username, created_at ]`, `[ end_date, success, status, action_type, username ]`, `[ end_date, success, status, action_type, created_at ]`, `[ end_date, success, status, username, created_at ]`, `[ end_date, success, action_type, username, created_at ]`, `[ end_date, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status ]`, `[ path, true_path, remote_ip, success, action_type ]`, `[ path, true_path, remote_ip, success, username ]`, `[ path, true_path, remote_ip, success, created_at ]`, `[ path, true_path, remote_ip, status, action_type ]`, `[ path, true_path, remote_ip, status, username ]`, `[ path, true_path, remote_ip, status, created_at ]`, `[ path, true_path, remote_ip, action_type, username ]`, `[ path, true_path, remote_ip, action_type, created_at ]`, `[ path, true_path, remote_ip, username, created_at ]`, `[ path, true_path, success, status, action_type ]`, `[ path, true_path, success, status, username ]`, `[ path, true_path, success, status, created_at ]`, `[ path, true_path, success, action_type, username ]`, `[ path, true_path, success, action_type, created_at ]`, `[ path, true_path, success, username, created_at ]`, `[ path, true_path, status, action_type, username ]`, `[ path, true_path, status, action_type, created_at ]`, `[ path, true_path, status, username, created_at ]`, `[ path, true_path, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type ]`, `[ path, remote_ip, success, status, username ]`, `[ path, remote_ip, success, status, created_at ]`, `[ path, remote_ip, success, action_type, username ]`, `[ path, remote_ip, success, action_type, created_at ]`, `[ path, remote_ip, success, username, created_at ]`, `[ path, remote_ip, status, action_type, username ]`, `[ path, remote_ip, status, action_type, created_at ]`, `[ path, remote_ip, status, username, created_at ]`, `[ path, remote_ip, action_type, username, created_at ]`, `[ path, success, status, action_type, username ]`, `[ path, success, status, action_type, created_at ]`, `[ path, success, status, username, created_at ]`, `[ path, success, action_type, username, created_at ]`, `[ path, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type ]`, `[ true_path, remote_ip, success, status, username ]`, `[ true_path, remote_ip, success, status, created_at ]`, `[ true_path, remote_ip, success, action_type, username ]`, `[ true_path, remote_ip, success, action_type, created_at ]`, `[ true_path, remote_ip, success, username, created_at ]`, `[ true_path, remote_ip, status, action_type, username ]`, `[ true_path, remote_ip, status, action_type, created_at ]`, `[ true_path, remote_ip, status, username, created_at ]`, `[ true_path, remote_ip, action_type, username, created_at ]`, `[ true_path, success, status, action_type, username ]`, `[ true_path, success, status, action_type, created_at ]`, `[ true_path, success, status, username, created_at ]`, `[ true_path, success, action_type, username, created_at ]`, `[ true_path, status, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type, username ]`, `[ remote_ip, success, status, action_type, created_at ]`, `[ remote_ip, success, status, username, created_at ]`, `[ remote_ip, success, action_type, username, created_at ]`, `[ remote_ip, status, action_type, username, created_at ]`, `[ success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success ]`, `[ start_date, end_date, path, true_path, remote_ip, status ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, username ]`, `[ start_date, end_date, path, true_path, remote_ip, created_at ]`, `[ start_date, end_date, path, true_path, success, status ]`, `[ start_date, end_date, path, true_path, success, action_type ]`, `[ start_date, end_date, path, true_path, success, username ]`, `[ start_date, end_date, path, true_path, success, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type ]`, `[ start_date, end_date, path, true_path, status, username ]`, `[ start_date, end_date, path, true_path, status, created_at ]`, `[ start_date, end_date, path, true_path, action_type, username ]`, `[ start_date, end_date, path, true_path, action_type, created_at ]`, `[ start_date, end_date, path, true_path, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status ]`, `[ start_date, end_date, path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, remote_ip, success, username ]`, `[ start_date, end_date, path, remote_ip, success, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, remote_ip, status, username ]`, `[ start_date, end_date, path, remote_ip, status, created_at ]`, `[ start_date, end_date, path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type ]`, `[ start_date, end_date, path, success, status, username ]`, `[ start_date, end_date, path, success, status, created_at ]`, `[ start_date, end_date, path, success, action_type, username ]`, `[ start_date, end_date, path, success, action_type, created_at ]`, `[ start_date, end_date, path, success, username, created_at ]`, `[ start_date, end_date, path, status, action_type, username ]`, `[ start_date, end_date, path, status, action_type, created_at ]`, `[ start_date, end_date, path, status, username, created_at ]`, `[ start_date, end_date, path, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, username ]`, `[ start_date, end_date, true_path, remote_ip, success, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, status, username ]`, `[ start_date, end_date, true_path, remote_ip, status, created_at ]`, `[ start_date, end_date, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type ]`, `[ start_date, end_date, true_path, success, status, username ]`, `[ start_date, end_date, true_path, success, status, created_at ]`, `[ start_date, end_date, true_path, success, action_type, username ]`, `[ start_date, end_date, true_path, success, action_type, created_at ]`, `[ start_date, end_date, true_path, success, username, created_at ]`, `[ start_date, end_date, true_path, status, action_type, username ]`, `[ start_date, end_date, true_path, status, action_type, created_at ]`, `[ start_date, end_date, true_path, status, username, created_at ]`, `[ start_date, end_date, true_path, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type ]`, `[ start_date, end_date, remote_ip, success, status, username ]`, `[ start_date, end_date, remote_ip, success, status, created_at ]`, `[ start_date, end_date, remote_ip, success, action_type, username ]`, `[ start_date, end_date, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, remote_ip, success, username, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type, username ]`, `[ start_date, end_date, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, remote_ip, status, username, created_at ]`, `[ start_date, end_date, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, success, status, action_type, username ]`, `[ start_date, end_date, success, status, action_type, created_at ]`, `[ start_date, end_date, success, status, username, created_at ]`, `[ start_date, end_date, success, action_type, username, created_at ]`, `[ start_date, end_date, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status ]`, `[ start_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, path, true_path, remote_ip, success, username ]`, `[ start_date, path, true_path, remote_ip, success, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, path, true_path, remote_ip, status, username ]`, `[ start_date, path, true_path, remote_ip, status, created_at ]`, `[ start_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, path, true_path, remote_ip, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type ]`, `[ start_date, path, true_path, success, status, username ]`, `[ start_date, path, true_path, success, status, created_at ]`, `[ start_date, path, true_path, success, action_type, username ]`, `[ start_date, path, true_path, success, action_type, created_at ]`, `[ start_date, path, true_path, success, username, created_at ]`, `[ start_date, path, true_path, status, action_type, username ]`, `[ start_date, path, true_path, status, action_type, created_at ]`, `[ start_date, path, true_path, status, username, created_at ]`, `[ start_date, path, true_path, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type ]`, `[ start_date, path, remote_ip, success, status, username ]`, `[ start_date, path, remote_ip, success, status, created_at ]`, `[ start_date, path, remote_ip, success, action_type, username ]`, `[ start_date, path, remote_ip, success, action_type, created_at ]`, `[ start_date, path, remote_ip, success, username, created_at ]`, `[ start_date, path, remote_ip, status, action_type, username ]`, `[ start_date, path, remote_ip, status, action_type, created_at ]`, `[ start_date, path, remote_ip, status, username, created_at ]`, `[ start_date, path, remote_ip, action_type, username, created_at ]`, `[ start_date, path, success, status, action_type, username ]`, `[ start_date, path, success, status, action_type, created_at ]`, `[ start_date, path, success, status, username, created_at ]`, `[ start_date, path, success, action_type, username, created_at ]`, `[ start_date, path, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, true_path, remote_ip, success, status, username ]`, `[ start_date, true_path, remote_ip, success, status, created_at ]`, `[ start_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, true_path, remote_ip, success, username, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, true_path, remote_ip, status, username, created_at ]`, `[ start_date, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, true_path, success, status, action_type, username ]`, `[ start_date, true_path, success, status, action_type, created_at ]`, `[ start_date, true_path, success, status, username, created_at ]`, `[ start_date, true_path, success, action_type, username, created_at ]`, `[ start_date, true_path, status, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type, username ]`, `[ start_date, remote_ip, success, status, action_type, created_at ]`, `[ start_date, remote_ip, success, status, username, created_at ]`, `[ start_date, remote_ip, success, action_type, username, created_at ]`, `[ start_date, remote_ip, status, action_type, username, created_at ]`, `[ start_date, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status ]`, `[ end_date, path, true_path, remote_ip, success, action_type ]`, `[ end_date, path, true_path, remote_ip, success, username ]`, `[ end_date, path, true_path, remote_ip, success, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type ]`, `[ end_date, path, true_path, remote_ip, status, username ]`, `[ end_date, path, true_path, remote_ip, status, created_at ]`, `[ end_date, path, true_path, remote_ip, action_type, username ]`, `[ end_date, path, true_path, remote_ip, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type ]`, `[ end_date, path, true_path, success, status, username ]`, `[ end_date, path, true_path, success, status, created_at ]`, `[ end_date, path, true_path, success, action_type, username ]`, `[ end_date, path, true_path, success, action_type, created_at ]`, `[ end_date, path, true_path, success, username, created_at ]`, `[ end_date, path, true_path, status, action_type, username ]`, `[ end_date, path, true_path, status, action_type, created_at ]`, `[ end_date, path, true_path, status, username, created_at ]`, `[ end_date, path, true_path, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type ]`, `[ end_date, path, remote_ip, success, status, username ]`, `[ end_date, path, remote_ip, success, status, created_at ]`, `[ end_date, path, remote_ip, success, action_type, username ]`, `[ end_date, path, remote_ip, success, action_type, created_at ]`, `[ end_date, path, remote_ip, success, username, created_at ]`, `[ end_date, path, remote_ip, status, action_type, username ]`, `[ end_date, path, remote_ip, status, action_type, created_at ]`, `[ end_date, path, remote_ip, status, username, created_at ]`, `[ end_date, path, remote_ip, action_type, username, created_at ]`, `[ end_date, path, success, status, action_type, username ]`, `[ end_date, path, success, status, action_type, created_at ]`, `[ end_date, path, success, status, username, created_at ]`, `[ end_date, path, success, action_type, username, created_at ]`, `[ end_date, path, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type ]`, `[ end_date, true_path, remote_ip, success, status, username ]`, `[ end_date, true_path, remote_ip, success, status, created_at ]`, `[ end_date, true_path, remote_ip, success, action_type, username ]`, `[ end_date, true_path, remote_ip, success, action_type, created_at ]`, `[ end_date, true_path, remote_ip, success, username, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type, username ]`, `[ end_date, true_path, remote_ip, status, action_type, created_at ]`, `[ end_date, true_path, remote_ip, status, username, created_at ]`, `[ end_date, true_path, remote_ip, action_type, username, created_at ]`, `[ end_date, true_path, success, status, action_type, username ]`, `[ end_date, true_path, success, status, action_type, created_at ]`, `[ end_date, true_path, success, status, username, created_at ]`, `[ end_date, true_path, success, action_type, username, created_at ]`, `[ end_date, true_path, status, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type, username ]`, `[ end_date, remote_ip, success, status, action_type, created_at ]`, `[ end_date, remote_ip, success, status, username, created_at ]`, `[ end_date, remote_ip, success, action_type, username, created_at ]`, `[ end_date, remote_ip, status, action_type, username, created_at ]`, `[ end_date, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type ]`, `[ path, true_path, remote_ip, success, status, username ]`, `[ path, true_path, remote_ip, success, status, created_at ]`, `[ path, true_path, remote_ip, success, action_type, username ]`, `[ path, true_path, remote_ip, success, action_type, created_at ]`, `[ path, true_path, remote_ip, success, username, created_at ]`, `[ path, true_path, remote_ip, status, action_type, username ]`, `[ path, true_path, remote_ip, status, action_type, created_at ]`, `[ path, true_path, remote_ip, status, username, created_at ]`, `[ path, true_path, remote_ip, action_type, username, created_at ]`, `[ path, true_path, success, status, action_type, username ]`, `[ path, true_path, success, status, action_type, created_at ]`, `[ path, true_path, success, status, username, created_at ]`, `[ path, true_path, success, action_type, username, created_at ]`, `[ path, true_path, status, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type, username ]`, `[ path, remote_ip, success, status, action_type, created_at ]`, `[ path, remote_ip, success, status, username, created_at ]`, `[ path, remote_ip, success, action_type, username, created_at ]`, `[ path, remote_ip, status, action_type, username, created_at ]`, `[ path, success, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type, username ]`, `[ true_path, remote_ip, success, status, action_type, created_at ]`, `[ true_path, remote_ip, success, status, username, created_at ]`, `[ true_path, remote_ip, success, action_type, username, created_at ]`, `[ true_path, remote_ip, status, action_type, username, created_at ]`, `[ true_path, success, status, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type ]`, `[ start_date, end_date, path, true_path, success, status, username ]`, `[ start_date, end_date, path, true_path, success, status, created_at ]`, `[ start_date, end_date, path, true_path, success, action_type, username ]`, `[ start_date, end_date, path, true_path, success, action_type, created_at ]`, `[ start_date, end_date, path, true_path, success, username, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type, username ]`, `[ start_date, end_date, path, true_path, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, status, username, created_at ]`, `[ start_date, end_date, path, true_path, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type, username ]`, `[ start_date, end_date, path, success, status, action_type, created_at ]`, `[ start_date, end_date, path, success, status, username, created_at ]`, `[ start_date, end_date, path, success, action_type, username, created_at ]`, `[ start_date, end_date, path, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type, username ]`, `[ start_date, end_date, true_path, success, status, action_type, created_at ]`, `[ start_date, end_date, true_path, success, status, username, created_at ]`, `[ start_date, end_date, true_path, success, action_type, username, created_at ]`, `[ start_date, end_date, true_path, status, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, path, true_path, remote_ip, success, status, created_at ]`, `[ start_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, success, username, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, status, username, created_at ]`, `[ start_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type, username ]`, `[ start_date, path, true_path, success, status, action_type, created_at ]`, `[ start_date, path, true_path, success, status, username, created_at ]`, `[ start_date, path, true_path, success, action_type, username, created_at ]`, `[ start_date, path, true_path, status, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, path, remote_ip, success, status, username, created_at ]`, `[ start_date, path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, path, success, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, true_path, success, status, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ end_date, path, true_path, remote_ip, success, status, username ]`, `[ end_date, path, true_path, remote_ip, success, status, created_at ]`, `[ end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, success, username, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, status, username, created_at ]`, `[ end_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type, username ]`, `[ end_date, path, true_path, success, status, action_type, created_at ]`, `[ end_date, path, true_path, success, status, username, created_at ]`, `[ end_date, path, true_path, success, action_type, username, created_at ]`, `[ end_date, path, true_path, status, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type, username ]`, `[ end_date, path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, path, remote_ip, success, status, username, created_at ]`, `[ end_date, path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, path, success, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ end_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, true_path, remote_ip, success, status, username, created_at ]`, `[ end_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, true_path, success, status, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type, username ]`, `[ path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ path, true_path, remote_ip, success, status, username, created_at ]`, `[ path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ path, true_path, success, status, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, success, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, success, status, username, created_at ]`, `[ start_date, end_date, path, true_path, success, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, username, created_at ]` or `[ end_date, path, true_path, remote_ip, success, status, action_type, username, created_at ]`.
|
|
63
|
+
* `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `path`, `true_path`, `status`, `action_type` or `username`. Valid field combinations are `[ start_date ]`, `[ end_date ]`, `[ path ]`, `[ true_path ]`, `[ remote_ip ]`, `[ success ]`, `[ status ]`, `[ action_type ]`, `[ username ]`, `[ created_at ]`, `[ start_date, end_date ]`, `[ start_date, path ]`, `[ start_date, true_path ]`, `[ start_date, remote_ip ]`, `[ start_date, success ]`, `[ start_date, status ]`, `[ start_date, action_type ]`, `[ start_date, username ]`, `[ start_date, created_at ]`, `[ end_date, path ]`, `[ end_date, true_path ]`, `[ end_date, remote_ip ]`, `[ end_date, success ]`, `[ end_date, status ]`, `[ end_date, action_type ]`, `[ end_date, username ]`, `[ end_date, created_at ]`, `[ path, true_path ]`, `[ path, remote_ip ]`, `[ path, success ]`, `[ path, status ]`, `[ path, action_type ]`, `[ path, username ]`, `[ path, created_at ]`, `[ true_path, remote_ip ]`, `[ true_path, success ]`, `[ true_path, status ]`, `[ true_path, action_type ]`, `[ true_path, username ]`, `[ true_path, created_at ]`, `[ remote_ip, success ]`, `[ remote_ip, status ]`, `[ remote_ip, action_type ]`, `[ remote_ip, username ]`, `[ remote_ip, created_at ]`, `[ success, status ]`, `[ success, action_type ]`, `[ success, username ]`, `[ success, created_at ]`, `[ status, action_type ]`, `[ status, username ]`, `[ status, created_at ]`, `[ action_type, username ]`, `[ action_type, created_at ]`, `[ username, created_at ]`, `[ start_date, end_date, path ]`, `[ start_date, end_date, true_path ]`, `[ start_date, end_date, remote_ip ]`, `[ start_date, end_date, success ]`, `[ start_date, end_date, status ]`, `[ start_date, end_date, action_type ]`, `[ start_date, end_date, username ]`, `[ start_date, end_date, created_at ]`, `[ start_date, path, true_path ]`, `[ start_date, path, remote_ip ]`, `[ start_date, path, success ]`, `[ start_date, path, status ]`, `[ start_date, path, action_type ]`, `[ start_date, path, username ]`, `[ start_date, path, created_at ]`, `[ start_date, true_path, remote_ip ]`, `[ start_date, true_path, success ]`, `[ start_date, true_path, status ]`, `[ start_date, true_path, action_type ]`, `[ start_date, true_path, username ]`, `[ start_date, true_path, created_at ]`, `[ start_date, remote_ip, success ]`, `[ start_date, remote_ip, status ]`, `[ start_date, remote_ip, action_type ]`, `[ start_date, remote_ip, username ]`, `[ start_date, remote_ip, created_at ]`, `[ start_date, success, status ]`, `[ start_date, success, action_type ]`, `[ start_date, success, username ]`, `[ start_date, success, created_at ]`, `[ start_date, status, action_type ]`, `[ start_date, status, username ]`, `[ start_date, status, created_at ]`, `[ start_date, action_type, username ]`, `[ start_date, action_type, created_at ]`, `[ start_date, username, created_at ]`, `[ end_date, path, true_path ]`, `[ end_date, path, remote_ip ]`, `[ end_date, path, success ]`, `[ end_date, path, status ]`, `[ end_date, path, action_type ]`, `[ end_date, path, username ]`, `[ end_date, path, created_at ]`, `[ end_date, true_path, remote_ip ]`, `[ end_date, true_path, success ]`, `[ end_date, true_path, status ]`, `[ end_date, true_path, action_type ]`, `[ end_date, true_path, username ]`, `[ end_date, true_path, created_at ]`, `[ end_date, remote_ip, success ]`, `[ end_date, remote_ip, status ]`, `[ end_date, remote_ip, action_type ]`, `[ end_date, remote_ip, username ]`, `[ end_date, remote_ip, created_at ]`, `[ end_date, success, status ]`, `[ end_date, success, action_type ]`, `[ end_date, success, username ]`, `[ end_date, success, created_at ]`, `[ end_date, status, action_type ]`, `[ end_date, status, username ]`, `[ end_date, status, created_at ]`, `[ end_date, action_type, username ]`, `[ end_date, action_type, created_at ]`, `[ end_date, username, created_at ]`, `[ path, true_path, remote_ip ]`, `[ path, true_path, success ]`, `[ path, true_path, status ]`, `[ path, true_path, action_type ]`, `[ path, true_path, username ]`, `[ path, true_path, created_at ]`, `[ path, remote_ip, success ]`, `[ path, remote_ip, status ]`, `[ path, remote_ip, action_type ]`, `[ path, remote_ip, username ]`, `[ path, remote_ip, created_at ]`, `[ path, success, status ]`, `[ path, success, action_type ]`, `[ path, success, username ]`, `[ path, success, created_at ]`, `[ path, status, action_type ]`, `[ path, status, username ]`, `[ path, status, created_at ]`, `[ path, action_type, username ]`, `[ path, action_type, created_at ]`, `[ path, username, created_at ]`, `[ true_path, remote_ip, success ]`, `[ true_path, remote_ip, status ]`, `[ true_path, remote_ip, action_type ]`, `[ true_path, remote_ip, username ]`, `[ true_path, remote_ip, created_at ]`, `[ true_path, success, status ]`, `[ true_path, success, action_type ]`, `[ true_path, success, username ]`, `[ true_path, success, created_at ]`, `[ true_path, status, action_type ]`, `[ true_path, status, username ]`, `[ true_path, status, created_at ]`, `[ true_path, action_type, username ]`, `[ true_path, action_type, created_at ]`, `[ true_path, username, created_at ]`, `[ remote_ip, success, status ]`, `[ remote_ip, success, action_type ]`, `[ remote_ip, success, username ]`, `[ remote_ip, success, created_at ]`, `[ remote_ip, status, action_type ]`, `[ remote_ip, status, username ]`, `[ remote_ip, status, created_at ]`, `[ remote_ip, action_type, username ]`, `[ remote_ip, action_type, created_at ]`, `[ remote_ip, username, created_at ]`, `[ success, status, action_type ]`, `[ success, status, username ]`, `[ success, status, created_at ]`, `[ success, action_type, username ]`, `[ success, action_type, created_at ]`, `[ success, username, created_at ]`, `[ status, action_type, username ]`, `[ status, action_type, created_at ]`, `[ status, username, created_at ]`, `[ action_type, username, created_at ]`, `[ start_date, end_date, path, true_path ]`, `[ start_date, end_date, path, remote_ip ]`, `[ start_date, end_date, path, success ]`, `[ start_date, end_date, path, status ]`, `[ start_date, end_date, path, action_type ]`, `[ start_date, end_date, path, username ]`, `[ start_date, end_date, path, created_at ]`, `[ start_date, end_date, true_path, remote_ip ]`, `[ start_date, end_date, true_path, success ]`, `[ start_date, end_date, true_path, status ]`, `[ start_date, end_date, true_path, action_type ]`, `[ start_date, end_date, true_path, username ]`, `[ start_date, end_date, true_path, created_at ]`, `[ start_date, end_date, remote_ip, success ]`, `[ start_date, end_date, remote_ip, status ]`, `[ start_date, end_date, remote_ip, action_type ]`, `[ start_date, end_date, remote_ip, username ]`, `[ start_date, end_date, remote_ip, created_at ]`, `[ start_date, end_date, success, status ]`, `[ start_date, end_date, success, action_type ]`, `[ start_date, end_date, success, username ]`, `[ start_date, end_date, success, created_at ]`, `[ start_date, end_date, status, action_type ]`, `[ start_date, end_date, status, username ]`, `[ start_date, end_date, status, created_at ]`, `[ start_date, end_date, action_type, username ]`, `[ start_date, end_date, action_type, created_at ]`, `[ start_date, end_date, username, created_at ]`, `[ start_date, path, true_path, remote_ip ]`, `[ start_date, path, true_path, success ]`, `[ start_date, path, true_path, status ]`, `[ start_date, path, true_path, action_type ]`, `[ start_date, path, true_path, username ]`, `[ start_date, path, true_path, created_at ]`, `[ start_date, path, remote_ip, success ]`, `[ start_date, path, remote_ip, status ]`, `[ start_date, path, remote_ip, action_type ]`, `[ start_date, path, remote_ip, username ]`, `[ start_date, path, remote_ip, created_at ]`, `[ start_date, path, success, status ]`, `[ start_date, path, success, action_type ]`, `[ start_date, path, success, username ]`, `[ start_date, path, success, created_at ]`, `[ start_date, path, status, action_type ]`, `[ start_date, path, status, username ]`, `[ start_date, path, status, created_at ]`, `[ start_date, path, action_type, username ]`, `[ start_date, path, action_type, created_at ]`, `[ start_date, path, username, created_at ]`, `[ start_date, true_path, remote_ip, success ]`, `[ start_date, true_path, remote_ip, status ]`, `[ start_date, true_path, remote_ip, action_type ]`, `[ start_date, true_path, remote_ip, username ]`, `[ start_date, true_path, remote_ip, created_at ]`, `[ start_date, true_path, success, status ]`, `[ start_date, true_path, success, action_type ]`, `[ start_date, true_path, success, username ]`, `[ start_date, true_path, success, created_at ]`, `[ start_date, true_path, status, action_type ]`, `[ start_date, true_path, status, username ]`, `[ start_date, true_path, status, created_at ]`, `[ start_date, true_path, action_type, username ]`, `[ start_date, true_path, action_type, created_at ]`, `[ start_date, true_path, username, created_at ]`, `[ start_date, remote_ip, success, status ]`, `[ start_date, remote_ip, success, action_type ]`, `[ start_date, remote_ip, success, username ]`, `[ start_date, remote_ip, success, created_at ]`, `[ start_date, remote_ip, status, action_type ]`, `[ start_date, remote_ip, status, username ]`, `[ start_date, remote_ip, status, created_at ]`, `[ start_date, remote_ip, action_type, username ]`, `[ start_date, remote_ip, action_type, created_at ]`, `[ start_date, remote_ip, username, created_at ]`, `[ start_date, success, status, action_type ]`, `[ start_date, success, status, username ]`, `[ start_date, success, status, created_at ]`, `[ start_date, success, action_type, username ]`, `[ start_date, success, action_type, created_at ]`, `[ start_date, success, username, created_at ]`, `[ start_date, status, action_type, username ]`, `[ start_date, status, action_type, created_at ]`, `[ start_date, status, username, created_at ]`, `[ start_date, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip ]`, `[ end_date, path, true_path, success ]`, `[ end_date, path, true_path, status ]`, `[ end_date, path, true_path, action_type ]`, `[ end_date, path, true_path, username ]`, `[ end_date, path, true_path, created_at ]`, `[ end_date, path, remote_ip, success ]`, `[ end_date, path, remote_ip, status ]`, `[ end_date, path, remote_ip, action_type ]`, `[ end_date, path, remote_ip, username ]`, `[ end_date, path, remote_ip, created_at ]`, `[ end_date, path, success, status ]`, `[ end_date, path, success, action_type ]`, `[ end_date, path, success, username ]`, `[ end_date, path, success, created_at ]`, `[ end_date, path, status, action_type ]`, `[ end_date, path, status, username ]`, `[ end_date, path, status, created_at ]`, `[ end_date, path, action_type, username ]`, `[ end_date, path, action_type, created_at ]`, `[ end_date, path, username, created_at ]`, `[ end_date, true_path, remote_ip, success ]`, `[ end_date, true_path, remote_ip, status ]`, `[ end_date, true_path, remote_ip, action_type ]`, `[ end_date, true_path, remote_ip, username ]`, `[ end_date, true_path, remote_ip, created_at ]`, `[ end_date, true_path, success, status ]`, `[ end_date, true_path, success, action_type ]`, `[ end_date, true_path, success, username ]`, `[ end_date, true_path, success, created_at ]`, `[ end_date, true_path, status, action_type ]`, `[ end_date, true_path, status, username ]`, `[ end_date, true_path, status, created_at ]`, `[ end_date, true_path, action_type, username ]`, `[ end_date, true_path, action_type, created_at ]`, `[ end_date, true_path, username, created_at ]`, `[ end_date, remote_ip, success, status ]`, `[ end_date, remote_ip, success, action_type ]`, `[ end_date, remote_ip, success, username ]`, `[ end_date, remote_ip, success, created_at ]`, `[ end_date, remote_ip, status, action_type ]`, `[ end_date, remote_ip, status, username ]`, `[ end_date, remote_ip, status, created_at ]`, `[ end_date, remote_ip, action_type, username ]`, `[ end_date, remote_ip, action_type, created_at ]`, `[ end_date, remote_ip, username, created_at ]`, `[ end_date, success, status, action_type ]`, `[ end_date, success, status, username ]`, `[ end_date, success, status, created_at ]`, `[ end_date, success, action_type, username ]`, `[ end_date, success, action_type, created_at ]`, `[ end_date, success, username, created_at ]`, `[ end_date, status, action_type, username ]`, `[ end_date, status, action_type, created_at ]`, `[ end_date, status, username, created_at ]`, `[ end_date, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success ]`, `[ path, true_path, remote_ip, status ]`, `[ path, true_path, remote_ip, action_type ]`, `[ path, true_path, remote_ip, username ]`, `[ path, true_path, remote_ip, created_at ]`, `[ path, true_path, success, status ]`, `[ path, true_path, success, action_type ]`, `[ path, true_path, success, username ]`, `[ path, true_path, success, created_at ]`, `[ path, true_path, status, action_type ]`, `[ path, true_path, status, username ]`, `[ path, true_path, status, created_at ]`, `[ path, true_path, action_type, username ]`, `[ path, true_path, action_type, created_at ]`, `[ path, true_path, username, created_at ]`, `[ path, remote_ip, success, status ]`, `[ path, remote_ip, success, action_type ]`, `[ path, remote_ip, success, username ]`, `[ path, remote_ip, success, created_at ]`, `[ path, remote_ip, status, action_type ]`, `[ path, remote_ip, status, username ]`, `[ path, remote_ip, status, created_at ]`, `[ path, remote_ip, action_type, username ]`, `[ path, remote_ip, action_type, created_at ]`, `[ path, remote_ip, username, created_at ]`, `[ path, success, status, action_type ]`, `[ path, success, status, username ]`, `[ path, success, status, created_at ]`, `[ path, success, action_type, username ]`, `[ path, success, action_type, created_at ]`, `[ path, success, username, created_at ]`, `[ path, status, action_type, username ]`, `[ path, status, action_type, created_at ]`, `[ path, status, username, created_at ]`, `[ path, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status ]`, `[ true_path, remote_ip, success, action_type ]`, `[ true_path, remote_ip, success, username ]`, `[ true_path, remote_ip, success, created_at ]`, `[ true_path, remote_ip, status, action_type ]`, `[ true_path, remote_ip, status, username ]`, `[ true_path, remote_ip, status, created_at ]`, `[ true_path, remote_ip, action_type, username ]`, `[ true_path, remote_ip, action_type, created_at ]`, `[ true_path, remote_ip, username, created_at ]`, `[ true_path, success, status, action_type ]`, `[ true_path, success, status, username ]`, `[ true_path, success, status, created_at ]`, `[ true_path, success, action_type, username ]`, `[ true_path, success, action_type, created_at ]`, `[ true_path, success, username, created_at ]`, `[ true_path, status, action_type, username ]`, `[ true_path, status, action_type, created_at ]`, `[ true_path, status, username, created_at ]`, `[ true_path, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type ]`, `[ remote_ip, success, status, username ]`, `[ remote_ip, success, status, created_at ]`, `[ remote_ip, success, action_type, username ]`, `[ remote_ip, success, action_type, created_at ]`, `[ remote_ip, success, username, created_at ]`, `[ remote_ip, status, action_type, username ]`, `[ remote_ip, status, action_type, created_at ]`, `[ remote_ip, status, username, created_at ]`, `[ remote_ip, action_type, username, created_at ]`, `[ success, status, action_type, username ]`, `[ success, status, action_type, created_at ]`, `[ success, status, username, created_at ]`, `[ success, action_type, username, created_at ]`, `[ status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip ]`, `[ start_date, end_date, path, true_path, success ]`, `[ start_date, end_date, path, true_path, status ]`, `[ start_date, end_date, path, true_path, action_type ]`, `[ start_date, end_date, path, true_path, username ]`, `[ start_date, end_date, path, true_path, created_at ]`, `[ start_date, end_date, path, remote_ip, success ]`, `[ start_date, end_date, path, remote_ip, status ]`, `[ start_date, end_date, path, remote_ip, action_type ]`, `[ start_date, end_date, path, remote_ip, username ]`, `[ start_date, end_date, path, remote_ip, created_at ]`, `[ start_date, end_date, path, success, status ]`, `[ start_date, end_date, path, success, action_type ]`, `[ start_date, end_date, path, success, username ]`, `[ start_date, end_date, path, success, created_at ]`, `[ start_date, end_date, path, status, action_type ]`, `[ start_date, end_date, path, status, username ]`, `[ start_date, end_date, path, status, created_at ]`, `[ start_date, end_date, path, action_type, username ]`, `[ start_date, end_date, path, action_type, created_at ]`, `[ start_date, end_date, path, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success ]`, `[ start_date, end_date, true_path, remote_ip, status ]`, `[ start_date, end_date, true_path, remote_ip, action_type ]`, `[ start_date, end_date, true_path, remote_ip, username ]`, `[ start_date, end_date, true_path, remote_ip, created_at ]`, `[ start_date, end_date, true_path, success, status ]`, `[ start_date, end_date, true_path, success, action_type ]`, `[ start_date, end_date, true_path, success, username ]`, `[ start_date, end_date, true_path, success, created_at ]`, `[ start_date, end_date, true_path, status, action_type ]`, `[ start_date, end_date, true_path, status, username ]`, `[ start_date, end_date, true_path, status, created_at ]`, `[ start_date, end_date, true_path, action_type, username ]`, `[ start_date, end_date, true_path, action_type, created_at ]`, `[ start_date, end_date, true_path, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status ]`, `[ start_date, end_date, remote_ip, success, action_type ]`, `[ start_date, end_date, remote_ip, success, username ]`, `[ start_date, end_date, remote_ip, success, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type ]`, `[ start_date, end_date, remote_ip, status, username ]`, `[ start_date, end_date, remote_ip, status, created_at ]`, `[ start_date, end_date, remote_ip, action_type, username ]`, `[ start_date, end_date, remote_ip, action_type, created_at ]`, `[ start_date, end_date, remote_ip, username, created_at ]`, `[ start_date, end_date, success, status, action_type ]`, `[ start_date, end_date, success, status, username ]`, `[ start_date, end_date, success, status, created_at ]`, `[ start_date, end_date, success, action_type, username ]`, `[ start_date, end_date, success, action_type, created_at ]`, `[ start_date, end_date, success, username, created_at ]`, `[ start_date, end_date, status, action_type, username ]`, `[ start_date, end_date, status, action_type, created_at ]`, `[ start_date, end_date, status, username, created_at ]`, `[ start_date, end_date, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success ]`, `[ start_date, path, true_path, remote_ip, status ]`, `[ start_date, path, true_path, remote_ip, action_type ]`, `[ start_date, path, true_path, remote_ip, username ]`, `[ start_date, path, true_path, remote_ip, created_at ]`, `[ start_date, path, true_path, success, status ]`, `[ start_date, path, true_path, success, action_type ]`, `[ start_date, path, true_path, success, username ]`, `[ start_date, path, true_path, success, created_at ]`, `[ start_date, path, true_path, status, action_type ]`, `[ start_date, path, true_path, status, username ]`, `[ start_date, path, true_path, status, created_at ]`, `[ start_date, path, true_path, action_type, username ]`, `[ start_date, path, true_path, action_type, created_at ]`, `[ start_date, path, true_path, username, created_at ]`, `[ start_date, path, remote_ip, success, status ]`, `[ start_date, path, remote_ip, success, action_type ]`, `[ start_date, path, remote_ip, success, username ]`, `[ start_date, path, remote_ip, success, created_at ]`, `[ start_date, path, remote_ip, status, action_type ]`, `[ start_date, path, remote_ip, status, username ]`, `[ start_date, path, remote_ip, status, created_at ]`, `[ start_date, path, remote_ip, action_type, username ]`, `[ start_date, path, remote_ip, action_type, created_at ]`, `[ start_date, path, remote_ip, username, created_at ]`, `[ start_date, path, success, status, action_type ]`, `[ start_date, path, success, status, username ]`, `[ start_date, path, success, status, created_at ]`, `[ start_date, path, success, action_type, username ]`, `[ start_date, path, success, action_type, created_at ]`, `[ start_date, path, success, username, created_at ]`, `[ start_date, path, status, action_type, username ]`, `[ start_date, path, status, action_type, created_at ]`, `[ start_date, path, status, username, created_at ]`, `[ start_date, path, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status ]`, `[ start_date, true_path, remote_ip, success, action_type ]`, `[ start_date, true_path, remote_ip, success, username ]`, `[ start_date, true_path, remote_ip, success, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type ]`, `[ start_date, true_path, remote_ip, status, username ]`, `[ start_date, true_path, remote_ip, status, created_at ]`, `[ start_date, true_path, remote_ip, action_type, username ]`, `[ start_date, true_path, remote_ip, action_type, created_at ]`, `[ start_date, true_path, remote_ip, username, created_at ]`, `[ start_date, true_path, success, status, action_type ]`, `[ start_date, true_path, success, status, username ]`, `[ start_date, true_path, success, status, created_at ]`, `[ start_date, true_path, success, action_type, username ]`, `[ start_date, true_path, success, action_type, created_at ]`, `[ start_date, true_path, success, username, created_at ]`, `[ start_date, true_path, status, action_type, username ]`, `[ start_date, true_path, status, action_type, created_at ]`, `[ start_date, true_path, status, username, created_at ]`, `[ start_date, true_path, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type ]`, `[ start_date, remote_ip, success, status, username ]`, `[ start_date, remote_ip, success, status, created_at ]`, `[ start_date, remote_ip, success, action_type, username ]`, `[ start_date, remote_ip, success, action_type, created_at ]`, `[ start_date, remote_ip, success, username, created_at ]`, `[ start_date, remote_ip, status, action_type, username ]`, `[ start_date, remote_ip, status, action_type, created_at ]`, `[ start_date, remote_ip, status, username, created_at ]`, `[ start_date, remote_ip, action_type, username, created_at ]`, `[ start_date, success, status, action_type, username ]`, `[ start_date, success, status, action_type, created_at ]`, `[ start_date, success, status, username, created_at ]`, `[ start_date, success, action_type, username, created_at ]`, `[ start_date, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success ]`, `[ end_date, path, true_path, remote_ip, status ]`, `[ end_date, path, true_path, remote_ip, action_type ]`, `[ end_date, path, true_path, remote_ip, username ]`, `[ end_date, path, true_path, remote_ip, created_at ]`, `[ end_date, path, true_path, success, status ]`, `[ end_date, path, true_path, success, action_type ]`, `[ end_date, path, true_path, success, username ]`, `[ end_date, path, true_path, success, created_at ]`, `[ end_date, path, true_path, status, action_type ]`, `[ end_date, path, true_path, status, username ]`, `[ end_date, path, true_path, status, created_at ]`, `[ end_date, path, true_path, action_type, username ]`, `[ end_date, path, true_path, action_type, created_at ]`, `[ end_date, path, true_path, username, created_at ]`, `[ end_date, path, remote_ip, success, status ]`, `[ end_date, path, remote_ip, success, action_type ]`, `[ end_date, path, remote_ip, success, username ]`, `[ end_date, path, remote_ip, success, created_at ]`, `[ end_date, path, remote_ip, status, action_type ]`, `[ end_date, path, remote_ip, status, username ]`, `[ end_date, path, remote_ip, status, created_at ]`, `[ end_date, path, remote_ip, action_type, username ]`, `[ end_date, path, remote_ip, action_type, created_at ]`, `[ end_date, path, remote_ip, username, created_at ]`, `[ end_date, path, success, status, action_type ]`, `[ end_date, path, success, status, username ]`, `[ end_date, path, success, status, created_at ]`, `[ end_date, path, success, action_type, username ]`, `[ end_date, path, success, action_type, created_at ]`, `[ end_date, path, success, username, created_at ]`, `[ end_date, path, status, action_type, username ]`, `[ end_date, path, status, action_type, created_at ]`, `[ end_date, path, status, username, created_at ]`, `[ end_date, path, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status ]`, `[ end_date, true_path, remote_ip, success, action_type ]`, `[ end_date, true_path, remote_ip, success, username ]`, `[ end_date, true_path, remote_ip, success, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type ]`, `[ end_date, true_path, remote_ip, status, username ]`, `[ end_date, true_path, remote_ip, status, created_at ]`, `[ end_date, true_path, remote_ip, action_type, username ]`, `[ end_date, true_path, remote_ip, action_type, created_at ]`, `[ end_date, true_path, remote_ip, username, created_at ]`, `[ end_date, true_path, success, status, action_type ]`, `[ end_date, true_path, success, status, username ]`, `[ end_date, true_path, success, status, created_at ]`, `[ end_date, true_path, success, action_type, username ]`, `[ end_date, true_path, success, action_type, created_at ]`, `[ end_date, true_path, success, username, created_at ]`, `[ end_date, true_path, status, action_type, username ]`, `[ end_date, true_path, status, action_type, created_at ]`, `[ end_date, true_path, status, username, created_at ]`, `[ end_date, true_path, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type ]`, `[ end_date, remote_ip, success, status, username ]`, `[ end_date, remote_ip, success, status, created_at ]`, `[ end_date, remote_ip, success, action_type, username ]`, `[ end_date, remote_ip, success, action_type, created_at ]`, `[ end_date, remote_ip, success, username, created_at ]`, `[ end_date, remote_ip, status, action_type, username ]`, `[ end_date, remote_ip, status, action_type, created_at ]`, `[ end_date, remote_ip, status, username, created_at ]`, `[ end_date, remote_ip, action_type, username, created_at ]`, `[ end_date, success, status, action_type, username ]`, `[ end_date, success, status, action_type, created_at ]`, `[ end_date, success, status, username, created_at ]`, `[ end_date, success, action_type, username, created_at ]`, `[ end_date, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status ]`, `[ path, true_path, remote_ip, success, action_type ]`, `[ path, true_path, remote_ip, success, username ]`, `[ path, true_path, remote_ip, success, created_at ]`, `[ path, true_path, remote_ip, status, action_type ]`, `[ path, true_path, remote_ip, status, username ]`, `[ path, true_path, remote_ip, status, created_at ]`, `[ path, true_path, remote_ip, action_type, username ]`, `[ path, true_path, remote_ip, action_type, created_at ]`, `[ path, true_path, remote_ip, username, created_at ]`, `[ path, true_path, success, status, action_type ]`, `[ path, true_path, success, status, username ]`, `[ path, true_path, success, status, created_at ]`, `[ path, true_path, success, action_type, username ]`, `[ path, true_path, success, action_type, created_at ]`, `[ path, true_path, success, username, created_at ]`, `[ path, true_path, status, action_type, username ]`, `[ path, true_path, status, action_type, created_at ]`, `[ path, true_path, status, username, created_at ]`, `[ path, true_path, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type ]`, `[ path, remote_ip, success, status, username ]`, `[ path, remote_ip, success, status, created_at ]`, `[ path, remote_ip, success, action_type, username ]`, `[ path, remote_ip, success, action_type, created_at ]`, `[ path, remote_ip, success, username, created_at ]`, `[ path, remote_ip, status, action_type, username ]`, `[ path, remote_ip, status, action_type, created_at ]`, `[ path, remote_ip, status, username, created_at ]`, `[ path, remote_ip, action_type, username, created_at ]`, `[ path, success, status, action_type, username ]`, `[ path, success, status, action_type, created_at ]`, `[ path, success, status, username, created_at ]`, `[ path, success, action_type, username, created_at ]`, `[ path, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type ]`, `[ true_path, remote_ip, success, status, username ]`, `[ true_path, remote_ip, success, status, created_at ]`, `[ true_path, remote_ip, success, action_type, username ]`, `[ true_path, remote_ip, success, action_type, created_at ]`, `[ true_path, remote_ip, success, username, created_at ]`, `[ true_path, remote_ip, status, action_type, username ]`, `[ true_path, remote_ip, status, action_type, created_at ]`, `[ true_path, remote_ip, status, username, created_at ]`, `[ true_path, remote_ip, action_type, username, created_at ]`, `[ true_path, success, status, action_type, username ]`, `[ true_path, success, status, action_type, created_at ]`, `[ true_path, success, status, username, created_at ]`, `[ true_path, success, action_type, username, created_at ]`, `[ true_path, status, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type, username ]`, `[ remote_ip, success, status, action_type, created_at ]`, `[ remote_ip, success, status, username, created_at ]`, `[ remote_ip, success, action_type, username, created_at ]`, `[ remote_ip, status, action_type, username, created_at ]`, `[ success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success ]`, `[ start_date, end_date, path, true_path, remote_ip, status ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, username ]`, `[ start_date, end_date, path, true_path, remote_ip, created_at ]`, `[ start_date, end_date, path, true_path, success, status ]`, `[ start_date, end_date, path, true_path, success, action_type ]`, `[ start_date, end_date, path, true_path, success, username ]`, `[ start_date, end_date, path, true_path, success, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type ]`, `[ start_date, end_date, path, true_path, status, username ]`, `[ start_date, end_date, path, true_path, status, created_at ]`, `[ start_date, end_date, path, true_path, action_type, username ]`, `[ start_date, end_date, path, true_path, action_type, created_at ]`, `[ start_date, end_date, path, true_path, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status ]`, `[ start_date, end_date, path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, remote_ip, success, username ]`, `[ start_date, end_date, path, remote_ip, success, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, remote_ip, status, username ]`, `[ start_date, end_date, path, remote_ip, status, created_at ]`, `[ start_date, end_date, path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type ]`, `[ start_date, end_date, path, success, status, username ]`, `[ start_date, end_date, path, success, status, created_at ]`, `[ start_date, end_date, path, success, action_type, username ]`, `[ start_date, end_date, path, success, action_type, created_at ]`, `[ start_date, end_date, path, success, username, created_at ]`, `[ start_date, end_date, path, status, action_type, username ]`, `[ start_date, end_date, path, status, action_type, created_at ]`, `[ start_date, end_date, path, status, username, created_at ]`, `[ start_date, end_date, path, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, username ]`, `[ start_date, end_date, true_path, remote_ip, success, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, status, username ]`, `[ start_date, end_date, true_path, remote_ip, status, created_at ]`, `[ start_date, end_date, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type ]`, `[ start_date, end_date, true_path, success, status, username ]`, `[ start_date, end_date, true_path, success, status, created_at ]`, `[ start_date, end_date, true_path, success, action_type, username ]`, `[ start_date, end_date, true_path, success, action_type, created_at ]`, `[ start_date, end_date, true_path, success, username, created_at ]`, `[ start_date, end_date, true_path, status, action_type, username ]`, `[ start_date, end_date, true_path, status, action_type, created_at ]`, `[ start_date, end_date, true_path, status, username, created_at ]`, `[ start_date, end_date, true_path, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type ]`, `[ start_date, end_date, remote_ip, success, status, username ]`, `[ start_date, end_date, remote_ip, success, status, created_at ]`, `[ start_date, end_date, remote_ip, success, action_type, username ]`, `[ start_date, end_date, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, remote_ip, success, username, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type, username ]`, `[ start_date, end_date, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, remote_ip, status, username, created_at ]`, `[ start_date, end_date, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, success, status, action_type, username ]`, `[ start_date, end_date, success, status, action_type, created_at ]`, `[ start_date, end_date, success, status, username, created_at ]`, `[ start_date, end_date, success, action_type, username, created_at ]`, `[ start_date, end_date, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status ]`, `[ start_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, path, true_path, remote_ip, success, username ]`, `[ start_date, path, true_path, remote_ip, success, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, path, true_path, remote_ip, status, username ]`, `[ start_date, path, true_path, remote_ip, status, created_at ]`, `[ start_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, path, true_path, remote_ip, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type ]`, `[ start_date, path, true_path, success, status, username ]`, `[ start_date, path, true_path, success, status, created_at ]`, `[ start_date, path, true_path, success, action_type, username ]`, `[ start_date, path, true_path, success, action_type, created_at ]`, `[ start_date, path, true_path, success, username, created_at ]`, `[ start_date, path, true_path, status, action_type, username ]`, `[ start_date, path, true_path, status, action_type, created_at ]`, `[ start_date, path, true_path, status, username, created_at ]`, `[ start_date, path, true_path, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type ]`, `[ start_date, path, remote_ip, success, status, username ]`, `[ start_date, path, remote_ip, success, status, created_at ]`, `[ start_date, path, remote_ip, success, action_type, username ]`, `[ start_date, path, remote_ip, success, action_type, created_at ]`, `[ start_date, path, remote_ip, success, username, created_at ]`, `[ start_date, path, remote_ip, status, action_type, username ]`, `[ start_date, path, remote_ip, status, action_type, created_at ]`, `[ start_date, path, remote_ip, status, username, created_at ]`, `[ start_date, path, remote_ip, action_type, username, created_at ]`, `[ start_date, path, success, status, action_type, username ]`, `[ start_date, path, success, status, action_type, created_at ]`, `[ start_date, path, success, status, username, created_at ]`, `[ start_date, path, success, action_type, username, created_at ]`, `[ start_date, path, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, true_path, remote_ip, success, status, username ]`, `[ start_date, true_path, remote_ip, success, status, created_at ]`, `[ start_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, true_path, remote_ip, success, username, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, true_path, remote_ip, status, username, created_at ]`, `[ start_date, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, true_path, success, status, action_type, username ]`, `[ start_date, true_path, success, status, action_type, created_at ]`, `[ start_date, true_path, success, status, username, created_at ]`, `[ start_date, true_path, success, action_type, username, created_at ]`, `[ start_date, true_path, status, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type, username ]`, `[ start_date, remote_ip, success, status, action_type, created_at ]`, `[ start_date, remote_ip, success, status, username, created_at ]`, `[ start_date, remote_ip, success, action_type, username, created_at ]`, `[ start_date, remote_ip, status, action_type, username, created_at ]`, `[ start_date, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status ]`, `[ end_date, path, true_path, remote_ip, success, action_type ]`, `[ end_date, path, true_path, remote_ip, success, username ]`, `[ end_date, path, true_path, remote_ip, success, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type ]`, `[ end_date, path, true_path, remote_ip, status, username ]`, `[ end_date, path, true_path, remote_ip, status, created_at ]`, `[ end_date, path, true_path, remote_ip, action_type, username ]`, `[ end_date, path, true_path, remote_ip, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type ]`, `[ end_date, path, true_path, success, status, username ]`, `[ end_date, path, true_path, success, status, created_at ]`, `[ end_date, path, true_path, success, action_type, username ]`, `[ end_date, path, true_path, success, action_type, created_at ]`, `[ end_date, path, true_path, success, username, created_at ]`, `[ end_date, path, true_path, status, action_type, username ]`, `[ end_date, path, true_path, status, action_type, created_at ]`, `[ end_date, path, true_path, status, username, created_at ]`, `[ end_date, path, true_path, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type ]`, `[ end_date, path, remote_ip, success, status, username ]`, `[ end_date, path, remote_ip, success, status, created_at ]`, `[ end_date, path, remote_ip, success, action_type, username ]`, `[ end_date, path, remote_ip, success, action_type, created_at ]`, `[ end_date, path, remote_ip, success, username, created_at ]`, `[ end_date, path, remote_ip, status, action_type, username ]`, `[ end_date, path, remote_ip, status, action_type, created_at ]`, `[ end_date, path, remote_ip, status, username, created_at ]`, `[ end_date, path, remote_ip, action_type, username, created_at ]`, `[ end_date, path, success, status, action_type, username ]`, `[ end_date, path, success, status, action_type, created_at ]`, `[ end_date, path, success, status, username, created_at ]`, `[ end_date, path, success, action_type, username, created_at ]`, `[ end_date, path, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type ]`, `[ end_date, true_path, remote_ip, success, status, username ]`, `[ end_date, true_path, remote_ip, success, status, created_at ]`, `[ end_date, true_path, remote_ip, success, action_type, username ]`, `[ end_date, true_path, remote_ip, success, action_type, created_at ]`, `[ end_date, true_path, remote_ip, success, username, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type, username ]`, `[ end_date, true_path, remote_ip, status, action_type, created_at ]`, `[ end_date, true_path, remote_ip, status, username, created_at ]`, `[ end_date, true_path, remote_ip, action_type, username, created_at ]`, `[ end_date, true_path, success, status, action_type, username ]`, `[ end_date, true_path, success, status, action_type, created_at ]`, `[ end_date, true_path, success, status, username, created_at ]`, `[ end_date, true_path, success, action_type, username, created_at ]`, `[ end_date, true_path, status, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type, username ]`, `[ end_date, remote_ip, success, status, action_type, created_at ]`, `[ end_date, remote_ip, success, status, username, created_at ]`, `[ end_date, remote_ip, success, action_type, username, created_at ]`, `[ end_date, remote_ip, status, action_type, username, created_at ]`, `[ end_date, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type ]`, `[ path, true_path, remote_ip, success, status, username ]`, `[ path, true_path, remote_ip, success, status, created_at ]`, `[ path, true_path, remote_ip, success, action_type, username ]`, `[ path, true_path, remote_ip, success, action_type, created_at ]`, `[ path, true_path, remote_ip, success, username, created_at ]`, `[ path, true_path, remote_ip, status, action_type, username ]`, `[ path, true_path, remote_ip, status, action_type, created_at ]`, `[ path, true_path, remote_ip, status, username, created_at ]`, `[ path, true_path, remote_ip, action_type, username, created_at ]`, `[ path, true_path, success, status, action_type, username ]`, `[ path, true_path, success, status, action_type, created_at ]`, `[ path, true_path, success, status, username, created_at ]`, `[ path, true_path, success, action_type, username, created_at ]`, `[ path, true_path, status, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type, username ]`, `[ path, remote_ip, success, status, action_type, created_at ]`, `[ path, remote_ip, success, status, username, created_at ]`, `[ path, remote_ip, success, action_type, username, created_at ]`, `[ path, remote_ip, status, action_type, username, created_at ]`, `[ path, success, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type, username ]`, `[ true_path, remote_ip, success, status, action_type, created_at ]`, `[ true_path, remote_ip, success, status, username, created_at ]`, `[ true_path, remote_ip, success, action_type, username, created_at ]`, `[ true_path, remote_ip, status, action_type, username, created_at ]`, `[ true_path, success, status, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type ]`, `[ start_date, end_date, path, true_path, success, status, username ]`, `[ start_date, end_date, path, true_path, success, status, created_at ]`, `[ start_date, end_date, path, true_path, success, action_type, username ]`, `[ start_date, end_date, path, true_path, success, action_type, created_at ]`, `[ start_date, end_date, path, true_path, success, username, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type, username ]`, `[ start_date, end_date, path, true_path, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, status, username, created_at ]`, `[ start_date, end_date, path, true_path, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type, username ]`, `[ start_date, end_date, path, success, status, action_type, created_at ]`, `[ start_date, end_date, path, success, status, username, created_at ]`, `[ start_date, end_date, path, success, action_type, username, created_at ]`, `[ start_date, end_date, path, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type, username ]`, `[ start_date, end_date, true_path, success, status, action_type, created_at ]`, `[ start_date, end_date, true_path, success, status, username, created_at ]`, `[ start_date, end_date, true_path, success, action_type, username, created_at ]`, `[ start_date, end_date, true_path, status, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, path, true_path, remote_ip, success, status, created_at ]`, `[ start_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, success, username, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, status, username, created_at ]`, `[ start_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type, username ]`, `[ start_date, path, true_path, success, status, action_type, created_at ]`, `[ start_date, path, true_path, success, status, username, created_at ]`, `[ start_date, path, true_path, success, action_type, username, created_at ]`, `[ start_date, path, true_path, status, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, path, remote_ip, success, status, username, created_at ]`, `[ start_date, path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, path, success, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, true_path, success, status, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ end_date, path, true_path, remote_ip, success, status, username ]`, `[ end_date, path, true_path, remote_ip, success, status, created_at ]`, `[ end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, success, username, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, status, username, created_at ]`, `[ end_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type, username ]`, `[ end_date, path, true_path, success, status, action_type, created_at ]`, `[ end_date, path, true_path, success, status, username, created_at ]`, `[ end_date, path, true_path, success, action_type, username, created_at ]`, `[ end_date, path, true_path, status, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type, username ]`, `[ end_date, path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, path, remote_ip, success, status, username, created_at ]`, `[ end_date, path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, path, success, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ end_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, true_path, remote_ip, success, status, username, created_at ]`, `[ end_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, true_path, success, status, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type, username ]`, `[ path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ path, true_path, remote_ip, success, status, username, created_at ]`, `[ path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ path, true_path, success, status, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, success, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, success, status, username, created_at ]`, `[ start_date, end_date, path, true_path, success, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, username, created_at ]` or `[ end_date, path, true_path, remote_ip, success, status, action_type, username, created_at ]`.
|
|
64
|
+
* `filter_lt` (object): If set, return records where the specified field is less than the supplied value. Valid fields are `created_at`. Valid field combinations are `[ start_date ]`, `[ end_date ]`, `[ path ]`, `[ true_path ]`, `[ remote_ip ]`, `[ success ]`, `[ status ]`, `[ action_type ]`, `[ username ]`, `[ created_at ]`, `[ start_date, end_date ]`, `[ start_date, path ]`, `[ start_date, true_path ]`, `[ start_date, remote_ip ]`, `[ start_date, success ]`, `[ start_date, status ]`, `[ start_date, action_type ]`, `[ start_date, username ]`, `[ start_date, created_at ]`, `[ end_date, path ]`, `[ end_date, true_path ]`, `[ end_date, remote_ip ]`, `[ end_date, success ]`, `[ end_date, status ]`, `[ end_date, action_type ]`, `[ end_date, username ]`, `[ end_date, created_at ]`, `[ path, true_path ]`, `[ path, remote_ip ]`, `[ path, success ]`, `[ path, status ]`, `[ path, action_type ]`, `[ path, username ]`, `[ path, created_at ]`, `[ true_path, remote_ip ]`, `[ true_path, success ]`, `[ true_path, status ]`, `[ true_path, action_type ]`, `[ true_path, username ]`, `[ true_path, created_at ]`, `[ remote_ip, success ]`, `[ remote_ip, status ]`, `[ remote_ip, action_type ]`, `[ remote_ip, username ]`, `[ remote_ip, created_at ]`, `[ success, status ]`, `[ success, action_type ]`, `[ success, username ]`, `[ success, created_at ]`, `[ status, action_type ]`, `[ status, username ]`, `[ status, created_at ]`, `[ action_type, username ]`, `[ action_type, created_at ]`, `[ username, created_at ]`, `[ start_date, end_date, path ]`, `[ start_date, end_date, true_path ]`, `[ start_date, end_date, remote_ip ]`, `[ start_date, end_date, success ]`, `[ start_date, end_date, status ]`, `[ start_date, end_date, action_type ]`, `[ start_date, end_date, username ]`, `[ start_date, end_date, created_at ]`, `[ start_date, path, true_path ]`, `[ start_date, path, remote_ip ]`, `[ start_date, path, success ]`, `[ start_date, path, status ]`, `[ start_date, path, action_type ]`, `[ start_date, path, username ]`, `[ start_date, path, created_at ]`, `[ start_date, true_path, remote_ip ]`, `[ start_date, true_path, success ]`, `[ start_date, true_path, status ]`, `[ start_date, true_path, action_type ]`, `[ start_date, true_path, username ]`, `[ start_date, true_path, created_at ]`, `[ start_date, remote_ip, success ]`, `[ start_date, remote_ip, status ]`, `[ start_date, remote_ip, action_type ]`, `[ start_date, remote_ip, username ]`, `[ start_date, remote_ip, created_at ]`, `[ start_date, success, status ]`, `[ start_date, success, action_type ]`, `[ start_date, success, username ]`, `[ start_date, success, created_at ]`, `[ start_date, status, action_type ]`, `[ start_date, status, username ]`, `[ start_date, status, created_at ]`, `[ start_date, action_type, username ]`, `[ start_date, action_type, created_at ]`, `[ start_date, username, created_at ]`, `[ end_date, path, true_path ]`, `[ end_date, path, remote_ip ]`, `[ end_date, path, success ]`, `[ end_date, path, status ]`, `[ end_date, path, action_type ]`, `[ end_date, path, username ]`, `[ end_date, path, created_at ]`, `[ end_date, true_path, remote_ip ]`, `[ end_date, true_path, success ]`, `[ end_date, true_path, status ]`, `[ end_date, true_path, action_type ]`, `[ end_date, true_path, username ]`, `[ end_date, true_path, created_at ]`, `[ end_date, remote_ip, success ]`, `[ end_date, remote_ip, status ]`, `[ end_date, remote_ip, action_type ]`, `[ end_date, remote_ip, username ]`, `[ end_date, remote_ip, created_at ]`, `[ end_date, success, status ]`, `[ end_date, success, action_type ]`, `[ end_date, success, username ]`, `[ end_date, success, created_at ]`, `[ end_date, status, action_type ]`, `[ end_date, status, username ]`, `[ end_date, status, created_at ]`, `[ end_date, action_type, username ]`, `[ end_date, action_type, created_at ]`, `[ end_date, username, created_at ]`, `[ path, true_path, remote_ip ]`, `[ path, true_path, success ]`, `[ path, true_path, status ]`, `[ path, true_path, action_type ]`, `[ path, true_path, username ]`, `[ path, true_path, created_at ]`, `[ path, remote_ip, success ]`, `[ path, remote_ip, status ]`, `[ path, remote_ip, action_type ]`, `[ path, remote_ip, username ]`, `[ path, remote_ip, created_at ]`, `[ path, success, status ]`, `[ path, success, action_type ]`, `[ path, success, username ]`, `[ path, success, created_at ]`, `[ path, status, action_type ]`, `[ path, status, username ]`, `[ path, status, created_at ]`, `[ path, action_type, username ]`, `[ path, action_type, created_at ]`, `[ path, username, created_at ]`, `[ true_path, remote_ip, success ]`, `[ true_path, remote_ip, status ]`, `[ true_path, remote_ip, action_type ]`, `[ true_path, remote_ip, username ]`, `[ true_path, remote_ip, created_at ]`, `[ true_path, success, status ]`, `[ true_path, success, action_type ]`, `[ true_path, success, username ]`, `[ true_path, success, created_at ]`, `[ true_path, status, action_type ]`, `[ true_path, status, username ]`, `[ true_path, status, created_at ]`, `[ true_path, action_type, username ]`, `[ true_path, action_type, created_at ]`, `[ true_path, username, created_at ]`, `[ remote_ip, success, status ]`, `[ remote_ip, success, action_type ]`, `[ remote_ip, success, username ]`, `[ remote_ip, success, created_at ]`, `[ remote_ip, status, action_type ]`, `[ remote_ip, status, username ]`, `[ remote_ip, status, created_at ]`, `[ remote_ip, action_type, username ]`, `[ remote_ip, action_type, created_at ]`, `[ remote_ip, username, created_at ]`, `[ success, status, action_type ]`, `[ success, status, username ]`, `[ success, status, created_at ]`, `[ success, action_type, username ]`, `[ success, action_type, created_at ]`, `[ success, username, created_at ]`, `[ status, action_type, username ]`, `[ status, action_type, created_at ]`, `[ status, username, created_at ]`, `[ action_type, username, created_at ]`, `[ start_date, end_date, path, true_path ]`, `[ start_date, end_date, path, remote_ip ]`, `[ start_date, end_date, path, success ]`, `[ start_date, end_date, path, status ]`, `[ start_date, end_date, path, action_type ]`, `[ start_date, end_date, path, username ]`, `[ start_date, end_date, path, created_at ]`, `[ start_date, end_date, true_path, remote_ip ]`, `[ start_date, end_date, true_path, success ]`, `[ start_date, end_date, true_path, status ]`, `[ start_date, end_date, true_path, action_type ]`, `[ start_date, end_date, true_path, username ]`, `[ start_date, end_date, true_path, created_at ]`, `[ start_date, end_date, remote_ip, success ]`, `[ start_date, end_date, remote_ip, status ]`, `[ start_date, end_date, remote_ip, action_type ]`, `[ start_date, end_date, remote_ip, username ]`, `[ start_date, end_date, remote_ip, created_at ]`, `[ start_date, end_date, success, status ]`, `[ start_date, end_date, success, action_type ]`, `[ start_date, end_date, success, username ]`, `[ start_date, end_date, success, created_at ]`, `[ start_date, end_date, status, action_type ]`, `[ start_date, end_date, status, username ]`, `[ start_date, end_date, status, created_at ]`, `[ start_date, end_date, action_type, username ]`, `[ start_date, end_date, action_type, created_at ]`, `[ start_date, end_date, username, created_at ]`, `[ start_date, path, true_path, remote_ip ]`, `[ start_date, path, true_path, success ]`, `[ start_date, path, true_path, status ]`, `[ start_date, path, true_path, action_type ]`, `[ start_date, path, true_path, username ]`, `[ start_date, path, true_path, created_at ]`, `[ start_date, path, remote_ip, success ]`, `[ start_date, path, remote_ip, status ]`, `[ start_date, path, remote_ip, action_type ]`, `[ start_date, path, remote_ip, username ]`, `[ start_date, path, remote_ip, created_at ]`, `[ start_date, path, success, status ]`, `[ start_date, path, success, action_type ]`, `[ start_date, path, success, username ]`, `[ start_date, path, success, created_at ]`, `[ start_date, path, status, action_type ]`, `[ start_date, path, status, username ]`, `[ start_date, path, status, created_at ]`, `[ start_date, path, action_type, username ]`, `[ start_date, path, action_type, created_at ]`, `[ start_date, path, username, created_at ]`, `[ start_date, true_path, remote_ip, success ]`, `[ start_date, true_path, remote_ip, status ]`, `[ start_date, true_path, remote_ip, action_type ]`, `[ start_date, true_path, remote_ip, username ]`, `[ start_date, true_path, remote_ip, created_at ]`, `[ start_date, true_path, success, status ]`, `[ start_date, true_path, success, action_type ]`, `[ start_date, true_path, success, username ]`, `[ start_date, true_path, success, created_at ]`, `[ start_date, true_path, status, action_type ]`, `[ start_date, true_path, status, username ]`, `[ start_date, true_path, status, created_at ]`, `[ start_date, true_path, action_type, username ]`, `[ start_date, true_path, action_type, created_at ]`, `[ start_date, true_path, username, created_at ]`, `[ start_date, remote_ip, success, status ]`, `[ start_date, remote_ip, success, action_type ]`, `[ start_date, remote_ip, success, username ]`, `[ start_date, remote_ip, success, created_at ]`, `[ start_date, remote_ip, status, action_type ]`, `[ start_date, remote_ip, status, username ]`, `[ start_date, remote_ip, status, created_at ]`, `[ start_date, remote_ip, action_type, username ]`, `[ start_date, remote_ip, action_type, created_at ]`, `[ start_date, remote_ip, username, created_at ]`, `[ start_date, success, status, action_type ]`, `[ start_date, success, status, username ]`, `[ start_date, success, status, created_at ]`, `[ start_date, success, action_type, username ]`, `[ start_date, success, action_type, created_at ]`, `[ start_date, success, username, created_at ]`, `[ start_date, status, action_type, username ]`, `[ start_date, status, action_type, created_at ]`, `[ start_date, status, username, created_at ]`, `[ start_date, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip ]`, `[ end_date, path, true_path, success ]`, `[ end_date, path, true_path, status ]`, `[ end_date, path, true_path, action_type ]`, `[ end_date, path, true_path, username ]`, `[ end_date, path, true_path, created_at ]`, `[ end_date, path, remote_ip, success ]`, `[ end_date, path, remote_ip, status ]`, `[ end_date, path, remote_ip, action_type ]`, `[ end_date, path, remote_ip, username ]`, `[ end_date, path, remote_ip, created_at ]`, `[ end_date, path, success, status ]`, `[ end_date, path, success, action_type ]`, `[ end_date, path, success, username ]`, `[ end_date, path, success, created_at ]`, `[ end_date, path, status, action_type ]`, `[ end_date, path, status, username ]`, `[ end_date, path, status, created_at ]`, `[ end_date, path, action_type, username ]`, `[ end_date, path, action_type, created_at ]`, `[ end_date, path, username, created_at ]`, `[ end_date, true_path, remote_ip, success ]`, `[ end_date, true_path, remote_ip, status ]`, `[ end_date, true_path, remote_ip, action_type ]`, `[ end_date, true_path, remote_ip, username ]`, `[ end_date, true_path, remote_ip, created_at ]`, `[ end_date, true_path, success, status ]`, `[ end_date, true_path, success, action_type ]`, `[ end_date, true_path, success, username ]`, `[ end_date, true_path, success, created_at ]`, `[ end_date, true_path, status, action_type ]`, `[ end_date, true_path, status, username ]`, `[ end_date, true_path, status, created_at ]`, `[ end_date, true_path, action_type, username ]`, `[ end_date, true_path, action_type, created_at ]`, `[ end_date, true_path, username, created_at ]`, `[ end_date, remote_ip, success, status ]`, `[ end_date, remote_ip, success, action_type ]`, `[ end_date, remote_ip, success, username ]`, `[ end_date, remote_ip, success, created_at ]`, `[ end_date, remote_ip, status, action_type ]`, `[ end_date, remote_ip, status, username ]`, `[ end_date, remote_ip, status, created_at ]`, `[ end_date, remote_ip, action_type, username ]`, `[ end_date, remote_ip, action_type, created_at ]`, `[ end_date, remote_ip, username, created_at ]`, `[ end_date, success, status, action_type ]`, `[ end_date, success, status, username ]`, `[ end_date, success, status, created_at ]`, `[ end_date, success, action_type, username ]`, `[ end_date, success, action_type, created_at ]`, `[ end_date, success, username, created_at ]`, `[ end_date, status, action_type, username ]`, `[ end_date, status, action_type, created_at ]`, `[ end_date, status, username, created_at ]`, `[ end_date, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success ]`, `[ path, true_path, remote_ip, status ]`, `[ path, true_path, remote_ip, action_type ]`, `[ path, true_path, remote_ip, username ]`, `[ path, true_path, remote_ip, created_at ]`, `[ path, true_path, success, status ]`, `[ path, true_path, success, action_type ]`, `[ path, true_path, success, username ]`, `[ path, true_path, success, created_at ]`, `[ path, true_path, status, action_type ]`, `[ path, true_path, status, username ]`, `[ path, true_path, status, created_at ]`, `[ path, true_path, action_type, username ]`, `[ path, true_path, action_type, created_at ]`, `[ path, true_path, username, created_at ]`, `[ path, remote_ip, success, status ]`, `[ path, remote_ip, success, action_type ]`, `[ path, remote_ip, success, username ]`, `[ path, remote_ip, success, created_at ]`, `[ path, remote_ip, status, action_type ]`, `[ path, remote_ip, status, username ]`, `[ path, remote_ip, status, created_at ]`, `[ path, remote_ip, action_type, username ]`, `[ path, remote_ip, action_type, created_at ]`, `[ path, remote_ip, username, created_at ]`, `[ path, success, status, action_type ]`, `[ path, success, status, username ]`, `[ path, success, status, created_at ]`, `[ path, success, action_type, username ]`, `[ path, success, action_type, created_at ]`, `[ path, success, username, created_at ]`, `[ path, status, action_type, username ]`, `[ path, status, action_type, created_at ]`, `[ path, status, username, created_at ]`, `[ path, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status ]`, `[ true_path, remote_ip, success, action_type ]`, `[ true_path, remote_ip, success, username ]`, `[ true_path, remote_ip, success, created_at ]`, `[ true_path, remote_ip, status, action_type ]`, `[ true_path, remote_ip, status, username ]`, `[ true_path, remote_ip, status, created_at ]`, `[ true_path, remote_ip, action_type, username ]`, `[ true_path, remote_ip, action_type, created_at ]`, `[ true_path, remote_ip, username, created_at ]`, `[ true_path, success, status, action_type ]`, `[ true_path, success, status, username ]`, `[ true_path, success, status, created_at ]`, `[ true_path, success, action_type, username ]`, `[ true_path, success, action_type, created_at ]`, `[ true_path, success, username, created_at ]`, `[ true_path, status, action_type, username ]`, `[ true_path, status, action_type, created_at ]`, `[ true_path, status, username, created_at ]`, `[ true_path, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type ]`, `[ remote_ip, success, status, username ]`, `[ remote_ip, success, status, created_at ]`, `[ remote_ip, success, action_type, username ]`, `[ remote_ip, success, action_type, created_at ]`, `[ remote_ip, success, username, created_at ]`, `[ remote_ip, status, action_type, username ]`, `[ remote_ip, status, action_type, created_at ]`, `[ remote_ip, status, username, created_at ]`, `[ remote_ip, action_type, username, created_at ]`, `[ success, status, action_type, username ]`, `[ success, status, action_type, created_at ]`, `[ success, status, username, created_at ]`, `[ success, action_type, username, created_at ]`, `[ status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip ]`, `[ start_date, end_date, path, true_path, success ]`, `[ start_date, end_date, path, true_path, status ]`, `[ start_date, end_date, path, true_path, action_type ]`, `[ start_date, end_date, path, true_path, username ]`, `[ start_date, end_date, path, true_path, created_at ]`, `[ start_date, end_date, path, remote_ip, success ]`, `[ start_date, end_date, path, remote_ip, status ]`, `[ start_date, end_date, path, remote_ip, action_type ]`, `[ start_date, end_date, path, remote_ip, username ]`, `[ start_date, end_date, path, remote_ip, created_at ]`, `[ start_date, end_date, path, success, status ]`, `[ start_date, end_date, path, success, action_type ]`, `[ start_date, end_date, path, success, username ]`, `[ start_date, end_date, path, success, created_at ]`, `[ start_date, end_date, path, status, action_type ]`, `[ start_date, end_date, path, status, username ]`, `[ start_date, end_date, path, status, created_at ]`, `[ start_date, end_date, path, action_type, username ]`, `[ start_date, end_date, path, action_type, created_at ]`, `[ start_date, end_date, path, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success ]`, `[ start_date, end_date, true_path, remote_ip, status ]`, `[ start_date, end_date, true_path, remote_ip, action_type ]`, `[ start_date, end_date, true_path, remote_ip, username ]`, `[ start_date, end_date, true_path, remote_ip, created_at ]`, `[ start_date, end_date, true_path, success, status ]`, `[ start_date, end_date, true_path, success, action_type ]`, `[ start_date, end_date, true_path, success, username ]`, `[ start_date, end_date, true_path, success, created_at ]`, `[ start_date, end_date, true_path, status, action_type ]`, `[ start_date, end_date, true_path, status, username ]`, `[ start_date, end_date, true_path, status, created_at ]`, `[ start_date, end_date, true_path, action_type, username ]`, `[ start_date, end_date, true_path, action_type, created_at ]`, `[ start_date, end_date, true_path, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status ]`, `[ start_date, end_date, remote_ip, success, action_type ]`, `[ start_date, end_date, remote_ip, success, username ]`, `[ start_date, end_date, remote_ip, success, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type ]`, `[ start_date, end_date, remote_ip, status, username ]`, `[ start_date, end_date, remote_ip, status, created_at ]`, `[ start_date, end_date, remote_ip, action_type, username ]`, `[ start_date, end_date, remote_ip, action_type, created_at ]`, `[ start_date, end_date, remote_ip, username, created_at ]`, `[ start_date, end_date, success, status, action_type ]`, `[ start_date, end_date, success, status, username ]`, `[ start_date, end_date, success, status, created_at ]`, `[ start_date, end_date, success, action_type, username ]`, `[ start_date, end_date, success, action_type, created_at ]`, `[ start_date, end_date, success, username, created_at ]`, `[ start_date, end_date, status, action_type, username ]`, `[ start_date, end_date, status, action_type, created_at ]`, `[ start_date, end_date, status, username, created_at ]`, `[ start_date, end_date, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success ]`, `[ start_date, path, true_path, remote_ip, status ]`, `[ start_date, path, true_path, remote_ip, action_type ]`, `[ start_date, path, true_path, remote_ip, username ]`, `[ start_date, path, true_path, remote_ip, created_at ]`, `[ start_date, path, true_path, success, status ]`, `[ start_date, path, true_path, success, action_type ]`, `[ start_date, path, true_path, success, username ]`, `[ start_date, path, true_path, success, created_at ]`, `[ start_date, path, true_path, status, action_type ]`, `[ start_date, path, true_path, status, username ]`, `[ start_date, path, true_path, status, created_at ]`, `[ start_date, path, true_path, action_type, username ]`, `[ start_date, path, true_path, action_type, created_at ]`, `[ start_date, path, true_path, username, created_at ]`, `[ start_date, path, remote_ip, success, status ]`, `[ start_date, path, remote_ip, success, action_type ]`, `[ start_date, path, remote_ip, success, username ]`, `[ start_date, path, remote_ip, success, created_at ]`, `[ start_date, path, remote_ip, status, action_type ]`, `[ start_date, path, remote_ip, status, username ]`, `[ start_date, path, remote_ip, status, created_at ]`, `[ start_date, path, remote_ip, action_type, username ]`, `[ start_date, path, remote_ip, action_type, created_at ]`, `[ start_date, path, remote_ip, username, created_at ]`, `[ start_date, path, success, status, action_type ]`, `[ start_date, path, success, status, username ]`, `[ start_date, path, success, status, created_at ]`, `[ start_date, path, success, action_type, username ]`, `[ start_date, path, success, action_type, created_at ]`, `[ start_date, path, success, username, created_at ]`, `[ start_date, path, status, action_type, username ]`, `[ start_date, path, status, action_type, created_at ]`, `[ start_date, path, status, username, created_at ]`, `[ start_date, path, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status ]`, `[ start_date, true_path, remote_ip, success, action_type ]`, `[ start_date, true_path, remote_ip, success, username ]`, `[ start_date, true_path, remote_ip, success, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type ]`, `[ start_date, true_path, remote_ip, status, username ]`, `[ start_date, true_path, remote_ip, status, created_at ]`, `[ start_date, true_path, remote_ip, action_type, username ]`, `[ start_date, true_path, remote_ip, action_type, created_at ]`, `[ start_date, true_path, remote_ip, username, created_at ]`, `[ start_date, true_path, success, status, action_type ]`, `[ start_date, true_path, success, status, username ]`, `[ start_date, true_path, success, status, created_at ]`, `[ start_date, true_path, success, action_type, username ]`, `[ start_date, true_path, success, action_type, created_at ]`, `[ start_date, true_path, success, username, created_at ]`, `[ start_date, true_path, status, action_type, username ]`, `[ start_date, true_path, status, action_type, created_at ]`, `[ start_date, true_path, status, username, created_at ]`, `[ start_date, true_path, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type ]`, `[ start_date, remote_ip, success, status, username ]`, `[ start_date, remote_ip, success, status, created_at ]`, `[ start_date, remote_ip, success, action_type, username ]`, `[ start_date, remote_ip, success, action_type, created_at ]`, `[ start_date, remote_ip, success, username, created_at ]`, `[ start_date, remote_ip, status, action_type, username ]`, `[ start_date, remote_ip, status, action_type, created_at ]`, `[ start_date, remote_ip, status, username, created_at ]`, `[ start_date, remote_ip, action_type, username, created_at ]`, `[ start_date, success, status, action_type, username ]`, `[ start_date, success, status, action_type, created_at ]`, `[ start_date, success, status, username, created_at ]`, `[ start_date, success, action_type, username, created_at ]`, `[ start_date, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success ]`, `[ end_date, path, true_path, remote_ip, status ]`, `[ end_date, path, true_path, remote_ip, action_type ]`, `[ end_date, path, true_path, remote_ip, username ]`, `[ end_date, path, true_path, remote_ip, created_at ]`, `[ end_date, path, true_path, success, status ]`, `[ end_date, path, true_path, success, action_type ]`, `[ end_date, path, true_path, success, username ]`, `[ end_date, path, true_path, success, created_at ]`, `[ end_date, path, true_path, status, action_type ]`, `[ end_date, path, true_path, status, username ]`, `[ end_date, path, true_path, status, created_at ]`, `[ end_date, path, true_path, action_type, username ]`, `[ end_date, path, true_path, action_type, created_at ]`, `[ end_date, path, true_path, username, created_at ]`, `[ end_date, path, remote_ip, success, status ]`, `[ end_date, path, remote_ip, success, action_type ]`, `[ end_date, path, remote_ip, success, username ]`, `[ end_date, path, remote_ip, success, created_at ]`, `[ end_date, path, remote_ip, status, action_type ]`, `[ end_date, path, remote_ip, status, username ]`, `[ end_date, path, remote_ip, status, created_at ]`, `[ end_date, path, remote_ip, action_type, username ]`, `[ end_date, path, remote_ip, action_type, created_at ]`, `[ end_date, path, remote_ip, username, created_at ]`, `[ end_date, path, success, status, action_type ]`, `[ end_date, path, success, status, username ]`, `[ end_date, path, success, status, created_at ]`, `[ end_date, path, success, action_type, username ]`, `[ end_date, path, success, action_type, created_at ]`, `[ end_date, path, success, username, created_at ]`, `[ end_date, path, status, action_type, username ]`, `[ end_date, path, status, action_type, created_at ]`, `[ end_date, path, status, username, created_at ]`, `[ end_date, path, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status ]`, `[ end_date, true_path, remote_ip, success, action_type ]`, `[ end_date, true_path, remote_ip, success, username ]`, `[ end_date, true_path, remote_ip, success, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type ]`, `[ end_date, true_path, remote_ip, status, username ]`, `[ end_date, true_path, remote_ip, status, created_at ]`, `[ end_date, true_path, remote_ip, action_type, username ]`, `[ end_date, true_path, remote_ip, action_type, created_at ]`, `[ end_date, true_path, remote_ip, username, created_at ]`, `[ end_date, true_path, success, status, action_type ]`, `[ end_date, true_path, success, status, username ]`, `[ end_date, true_path, success, status, created_at ]`, `[ end_date, true_path, success, action_type, username ]`, `[ end_date, true_path, success, action_type, created_at ]`, `[ end_date, true_path, success, username, created_at ]`, `[ end_date, true_path, status, action_type, username ]`, `[ end_date, true_path, status, action_type, created_at ]`, `[ end_date, true_path, status, username, created_at ]`, `[ end_date, true_path, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type ]`, `[ end_date, remote_ip, success, status, username ]`, `[ end_date, remote_ip, success, status, created_at ]`, `[ end_date, remote_ip, success, action_type, username ]`, `[ end_date, remote_ip, success, action_type, created_at ]`, `[ end_date, remote_ip, success, username, created_at ]`, `[ end_date, remote_ip, status, action_type, username ]`, `[ end_date, remote_ip, status, action_type, created_at ]`, `[ end_date, remote_ip, status, username, created_at ]`, `[ end_date, remote_ip, action_type, username, created_at ]`, `[ end_date, success, status, action_type, username ]`, `[ end_date, success, status, action_type, created_at ]`, `[ end_date, success, status, username, created_at ]`, `[ end_date, success, action_type, username, created_at ]`, `[ end_date, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status ]`, `[ path, true_path, remote_ip, success, action_type ]`, `[ path, true_path, remote_ip, success, username ]`, `[ path, true_path, remote_ip, success, created_at ]`, `[ path, true_path, remote_ip, status, action_type ]`, `[ path, true_path, remote_ip, status, username ]`, `[ path, true_path, remote_ip, status, created_at ]`, `[ path, true_path, remote_ip, action_type, username ]`, `[ path, true_path, remote_ip, action_type, created_at ]`, `[ path, true_path, remote_ip, username, created_at ]`, `[ path, true_path, success, status, action_type ]`, `[ path, true_path, success, status, username ]`, `[ path, true_path, success, status, created_at ]`, `[ path, true_path, success, action_type, username ]`, `[ path, true_path, success, action_type, created_at ]`, `[ path, true_path, success, username, created_at ]`, `[ path, true_path, status, action_type, username ]`, `[ path, true_path, status, action_type, created_at ]`, `[ path, true_path, status, username, created_at ]`, `[ path, true_path, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type ]`, `[ path, remote_ip, success, status, username ]`, `[ path, remote_ip, success, status, created_at ]`, `[ path, remote_ip, success, action_type, username ]`, `[ path, remote_ip, success, action_type, created_at ]`, `[ path, remote_ip, success, username, created_at ]`, `[ path, remote_ip, status, action_type, username ]`, `[ path, remote_ip, status, action_type, created_at ]`, `[ path, remote_ip, status, username, created_at ]`, `[ path, remote_ip, action_type, username, created_at ]`, `[ path, success, status, action_type, username ]`, `[ path, success, status, action_type, created_at ]`, `[ path, success, status, username, created_at ]`, `[ path, success, action_type, username, created_at ]`, `[ path, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type ]`, `[ true_path, remote_ip, success, status, username ]`, `[ true_path, remote_ip, success, status, created_at ]`, `[ true_path, remote_ip, success, action_type, username ]`, `[ true_path, remote_ip, success, action_type, created_at ]`, `[ true_path, remote_ip, success, username, created_at ]`, `[ true_path, remote_ip, status, action_type, username ]`, `[ true_path, remote_ip, status, action_type, created_at ]`, `[ true_path, remote_ip, status, username, created_at ]`, `[ true_path, remote_ip, action_type, username, created_at ]`, `[ true_path, success, status, action_type, username ]`, `[ true_path, success, status, action_type, created_at ]`, `[ true_path, success, status, username, created_at ]`, `[ true_path, success, action_type, username, created_at ]`, `[ true_path, status, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type, username ]`, `[ remote_ip, success, status, action_type, created_at ]`, `[ remote_ip, success, status, username, created_at ]`, `[ remote_ip, success, action_type, username, created_at ]`, `[ remote_ip, status, action_type, username, created_at ]`, `[ success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success ]`, `[ start_date, end_date, path, true_path, remote_ip, status ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, username ]`, `[ start_date, end_date, path, true_path, remote_ip, created_at ]`, `[ start_date, end_date, path, true_path, success, status ]`, `[ start_date, end_date, path, true_path, success, action_type ]`, `[ start_date, end_date, path, true_path, success, username ]`, `[ start_date, end_date, path, true_path, success, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type ]`, `[ start_date, end_date, path, true_path, status, username ]`, `[ start_date, end_date, path, true_path, status, created_at ]`, `[ start_date, end_date, path, true_path, action_type, username ]`, `[ start_date, end_date, path, true_path, action_type, created_at ]`, `[ start_date, end_date, path, true_path, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status ]`, `[ start_date, end_date, path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, remote_ip, success, username ]`, `[ start_date, end_date, path, remote_ip, success, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, remote_ip, status, username ]`, `[ start_date, end_date, path, remote_ip, status, created_at ]`, `[ start_date, end_date, path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type ]`, `[ start_date, end_date, path, success, status, username ]`, `[ start_date, end_date, path, success, status, created_at ]`, `[ start_date, end_date, path, success, action_type, username ]`, `[ start_date, end_date, path, success, action_type, created_at ]`, `[ start_date, end_date, path, success, username, created_at ]`, `[ start_date, end_date, path, status, action_type, username ]`, `[ start_date, end_date, path, status, action_type, created_at ]`, `[ start_date, end_date, path, status, username, created_at ]`, `[ start_date, end_date, path, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, username ]`, `[ start_date, end_date, true_path, remote_ip, success, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, status, username ]`, `[ start_date, end_date, true_path, remote_ip, status, created_at ]`, `[ start_date, end_date, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type ]`, `[ start_date, end_date, true_path, success, status, username ]`, `[ start_date, end_date, true_path, success, status, created_at ]`, `[ start_date, end_date, true_path, success, action_type, username ]`, `[ start_date, end_date, true_path, success, action_type, created_at ]`, `[ start_date, end_date, true_path, success, username, created_at ]`, `[ start_date, end_date, true_path, status, action_type, username ]`, `[ start_date, end_date, true_path, status, action_type, created_at ]`, `[ start_date, end_date, true_path, status, username, created_at ]`, `[ start_date, end_date, true_path, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type ]`, `[ start_date, end_date, remote_ip, success, status, username ]`, `[ start_date, end_date, remote_ip, success, status, created_at ]`, `[ start_date, end_date, remote_ip, success, action_type, username ]`, `[ start_date, end_date, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, remote_ip, success, username, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type, username ]`, `[ start_date, end_date, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, remote_ip, status, username, created_at ]`, `[ start_date, end_date, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, success, status, action_type, username ]`, `[ start_date, end_date, success, status, action_type, created_at ]`, `[ start_date, end_date, success, status, username, created_at ]`, `[ start_date, end_date, success, action_type, username, created_at ]`, `[ start_date, end_date, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status ]`, `[ start_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, path, true_path, remote_ip, success, username ]`, `[ start_date, path, true_path, remote_ip, success, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, path, true_path, remote_ip, status, username ]`, `[ start_date, path, true_path, remote_ip, status, created_at ]`, `[ start_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, path, true_path, remote_ip, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type ]`, `[ start_date, path, true_path, success, status, username ]`, `[ start_date, path, true_path, success, status, created_at ]`, `[ start_date, path, true_path, success, action_type, username ]`, `[ start_date, path, true_path, success, action_type, created_at ]`, `[ start_date, path, true_path, success, username, created_at ]`, `[ start_date, path, true_path, status, action_type, username ]`, `[ start_date, path, true_path, status, action_type, created_at ]`, `[ start_date, path, true_path, status, username, created_at ]`, `[ start_date, path, true_path, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type ]`, `[ start_date, path, remote_ip, success, status, username ]`, `[ start_date, path, remote_ip, success, status, created_at ]`, `[ start_date, path, remote_ip, success, action_type, username ]`, `[ start_date, path, remote_ip, success, action_type, created_at ]`, `[ start_date, path, remote_ip, success, username, created_at ]`, `[ start_date, path, remote_ip, status, action_type, username ]`, `[ start_date, path, remote_ip, status, action_type, created_at ]`, `[ start_date, path, remote_ip, status, username, created_at ]`, `[ start_date, path, remote_ip, action_type, username, created_at ]`, `[ start_date, path, success, status, action_type, username ]`, `[ start_date, path, success, status, action_type, created_at ]`, `[ start_date, path, success, status, username, created_at ]`, `[ start_date, path, success, action_type, username, created_at ]`, `[ start_date, path, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, true_path, remote_ip, success, status, username ]`, `[ start_date, true_path, remote_ip, success, status, created_at ]`, `[ start_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, true_path, remote_ip, success, username, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, true_path, remote_ip, status, username, created_at ]`, `[ start_date, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, true_path, success, status, action_type, username ]`, `[ start_date, true_path, success, status, action_type, created_at ]`, `[ start_date, true_path, success, status, username, created_at ]`, `[ start_date, true_path, success, action_type, username, created_at ]`, `[ start_date, true_path, status, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type, username ]`, `[ start_date, remote_ip, success, status, action_type, created_at ]`, `[ start_date, remote_ip, success, status, username, created_at ]`, `[ start_date, remote_ip, success, action_type, username, created_at ]`, `[ start_date, remote_ip, status, action_type, username, created_at ]`, `[ start_date, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status ]`, `[ end_date, path, true_path, remote_ip, success, action_type ]`, `[ end_date, path, true_path, remote_ip, success, username ]`, `[ end_date, path, true_path, remote_ip, success, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type ]`, `[ end_date, path, true_path, remote_ip, status, username ]`, `[ end_date, path, true_path, remote_ip, status, created_at ]`, `[ end_date, path, true_path, remote_ip, action_type, username ]`, `[ end_date, path, true_path, remote_ip, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type ]`, `[ end_date, path, true_path, success, status, username ]`, `[ end_date, path, true_path, success, status, created_at ]`, `[ end_date, path, true_path, success, action_type, username ]`, `[ end_date, path, true_path, success, action_type, created_at ]`, `[ end_date, path, true_path, success, username, created_at ]`, `[ end_date, path, true_path, status, action_type, username ]`, `[ end_date, path, true_path, status, action_type, created_at ]`, `[ end_date, path, true_path, status, username, created_at ]`, `[ end_date, path, true_path, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type ]`, `[ end_date, path, remote_ip, success, status, username ]`, `[ end_date, path, remote_ip, success, status, created_at ]`, `[ end_date, path, remote_ip, success, action_type, username ]`, `[ end_date, path, remote_ip, success, action_type, created_at ]`, `[ end_date, path, remote_ip, success, username, created_at ]`, `[ end_date, path, remote_ip, status, action_type, username ]`, `[ end_date, path, remote_ip, status, action_type, created_at ]`, `[ end_date, path, remote_ip, status, username, created_at ]`, `[ end_date, path, remote_ip, action_type, username, created_at ]`, `[ end_date, path, success, status, action_type, username ]`, `[ end_date, path, success, status, action_type, created_at ]`, `[ end_date, path, success, status, username, created_at ]`, `[ end_date, path, success, action_type, username, created_at ]`, `[ end_date, path, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type ]`, `[ end_date, true_path, remote_ip, success, status, username ]`, `[ end_date, true_path, remote_ip, success, status, created_at ]`, `[ end_date, true_path, remote_ip, success, action_type, username ]`, `[ end_date, true_path, remote_ip, success, action_type, created_at ]`, `[ end_date, true_path, remote_ip, success, username, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type, username ]`, `[ end_date, true_path, remote_ip, status, action_type, created_at ]`, `[ end_date, true_path, remote_ip, status, username, created_at ]`, `[ end_date, true_path, remote_ip, action_type, username, created_at ]`, `[ end_date, true_path, success, status, action_type, username ]`, `[ end_date, true_path, success, status, action_type, created_at ]`, `[ end_date, true_path, success, status, username, created_at ]`, `[ end_date, true_path, success, action_type, username, created_at ]`, `[ end_date, true_path, status, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type, username ]`, `[ end_date, remote_ip, success, status, action_type, created_at ]`, `[ end_date, remote_ip, success, status, username, created_at ]`, `[ end_date, remote_ip, success, action_type, username, created_at ]`, `[ end_date, remote_ip, status, action_type, username, created_at ]`, `[ end_date, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type ]`, `[ path, true_path, remote_ip, success, status, username ]`, `[ path, true_path, remote_ip, success, status, created_at ]`, `[ path, true_path, remote_ip, success, action_type, username ]`, `[ path, true_path, remote_ip, success, action_type, created_at ]`, `[ path, true_path, remote_ip, success, username, created_at ]`, `[ path, true_path, remote_ip, status, action_type, username ]`, `[ path, true_path, remote_ip, status, action_type, created_at ]`, `[ path, true_path, remote_ip, status, username, created_at ]`, `[ path, true_path, remote_ip, action_type, username, created_at ]`, `[ path, true_path, success, status, action_type, username ]`, `[ path, true_path, success, status, action_type, created_at ]`, `[ path, true_path, success, status, username, created_at ]`, `[ path, true_path, success, action_type, username, created_at ]`, `[ path, true_path, status, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type, username ]`, `[ path, remote_ip, success, status, action_type, created_at ]`, `[ path, remote_ip, success, status, username, created_at ]`, `[ path, remote_ip, success, action_type, username, created_at ]`, `[ path, remote_ip, status, action_type, username, created_at ]`, `[ path, success, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type, username ]`, `[ true_path, remote_ip, success, status, action_type, created_at ]`, `[ true_path, remote_ip, success, status, username, created_at ]`, `[ true_path, remote_ip, success, action_type, username, created_at ]`, `[ true_path, remote_ip, status, action_type, username, created_at ]`, `[ true_path, success, status, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type ]`, `[ start_date, end_date, path, true_path, success, status, username ]`, `[ start_date, end_date, path, true_path, success, status, created_at ]`, `[ start_date, end_date, path, true_path, success, action_type, username ]`, `[ start_date, end_date, path, true_path, success, action_type, created_at ]`, `[ start_date, end_date, path, true_path, success, username, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type, username ]`, `[ start_date, end_date, path, true_path, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, status, username, created_at ]`, `[ start_date, end_date, path, true_path, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type, username ]`, `[ start_date, end_date, path, success, status, action_type, created_at ]`, `[ start_date, end_date, path, success, status, username, created_at ]`, `[ start_date, end_date, path, success, action_type, username, created_at ]`, `[ start_date, end_date, path, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type, username ]`, `[ start_date, end_date, true_path, success, status, action_type, created_at ]`, `[ start_date, end_date, true_path, success, status, username, created_at ]`, `[ start_date, end_date, true_path, success, action_type, username, created_at ]`, `[ start_date, end_date, true_path, status, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, path, true_path, remote_ip, success, status, created_at ]`, `[ start_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, success, username, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, status, username, created_at ]`, `[ start_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type, username ]`, `[ start_date, path, true_path, success, status, action_type, created_at ]`, `[ start_date, path, true_path, success, status, username, created_at ]`, `[ start_date, path, true_path, success, action_type, username, created_at ]`, `[ start_date, path, true_path, status, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, path, remote_ip, success, status, username, created_at ]`, `[ start_date, path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, path, success, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, true_path, success, status, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ end_date, path, true_path, remote_ip, success, status, username ]`, `[ end_date, path, true_path, remote_ip, success, status, created_at ]`, `[ end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, success, username, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, status, username, created_at ]`, `[ end_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type, username ]`, `[ end_date, path, true_path, success, status, action_type, created_at ]`, `[ end_date, path, true_path, success, status, username, created_at ]`, `[ end_date, path, true_path, success, action_type, username, created_at ]`, `[ end_date, path, true_path, status, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type, username ]`, `[ end_date, path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, path, remote_ip, success, status, username, created_at ]`, `[ end_date, path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, path, success, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ end_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, true_path, remote_ip, success, status, username, created_at ]`, `[ end_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, true_path, success, status, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type, username ]`, `[ path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ path, true_path, remote_ip, success, status, username, created_at ]`, `[ path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ path, true_path, success, status, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, success, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, success, status, username, created_at ]`, `[ start_date, end_date, path, true_path, success, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, username, created_at ]` or `[ end_date, path, true_path, remote_ip, success, status, action_type, username, created_at ]`.
|
|
65
|
+
* `filter_lteq` (object): If set, return records where the specified field is less than or equal the supplied value. Valid fields are `created_at`. Valid field combinations are `[ start_date ]`, `[ end_date ]`, `[ path ]`, `[ true_path ]`, `[ remote_ip ]`, `[ success ]`, `[ status ]`, `[ action_type ]`, `[ username ]`, `[ created_at ]`, `[ start_date, end_date ]`, `[ start_date, path ]`, `[ start_date, true_path ]`, `[ start_date, remote_ip ]`, `[ start_date, success ]`, `[ start_date, status ]`, `[ start_date, action_type ]`, `[ start_date, username ]`, `[ start_date, created_at ]`, `[ end_date, path ]`, `[ end_date, true_path ]`, `[ end_date, remote_ip ]`, `[ end_date, success ]`, `[ end_date, status ]`, `[ end_date, action_type ]`, `[ end_date, username ]`, `[ end_date, created_at ]`, `[ path, true_path ]`, `[ path, remote_ip ]`, `[ path, success ]`, `[ path, status ]`, `[ path, action_type ]`, `[ path, username ]`, `[ path, created_at ]`, `[ true_path, remote_ip ]`, `[ true_path, success ]`, `[ true_path, status ]`, `[ true_path, action_type ]`, `[ true_path, username ]`, `[ true_path, created_at ]`, `[ remote_ip, success ]`, `[ remote_ip, status ]`, `[ remote_ip, action_type ]`, `[ remote_ip, username ]`, `[ remote_ip, created_at ]`, `[ success, status ]`, `[ success, action_type ]`, `[ success, username ]`, `[ success, created_at ]`, `[ status, action_type ]`, `[ status, username ]`, `[ status, created_at ]`, `[ action_type, username ]`, `[ action_type, created_at ]`, `[ username, created_at ]`, `[ start_date, end_date, path ]`, `[ start_date, end_date, true_path ]`, `[ start_date, end_date, remote_ip ]`, `[ start_date, end_date, success ]`, `[ start_date, end_date, status ]`, `[ start_date, end_date, action_type ]`, `[ start_date, end_date, username ]`, `[ start_date, end_date, created_at ]`, `[ start_date, path, true_path ]`, `[ start_date, path, remote_ip ]`, `[ start_date, path, success ]`, `[ start_date, path, status ]`, `[ start_date, path, action_type ]`, `[ start_date, path, username ]`, `[ start_date, path, created_at ]`, `[ start_date, true_path, remote_ip ]`, `[ start_date, true_path, success ]`, `[ start_date, true_path, status ]`, `[ start_date, true_path, action_type ]`, `[ start_date, true_path, username ]`, `[ start_date, true_path, created_at ]`, `[ start_date, remote_ip, success ]`, `[ start_date, remote_ip, status ]`, `[ start_date, remote_ip, action_type ]`, `[ start_date, remote_ip, username ]`, `[ start_date, remote_ip, created_at ]`, `[ start_date, success, status ]`, `[ start_date, success, action_type ]`, `[ start_date, success, username ]`, `[ start_date, success, created_at ]`, `[ start_date, status, action_type ]`, `[ start_date, status, username ]`, `[ start_date, status, created_at ]`, `[ start_date, action_type, username ]`, `[ start_date, action_type, created_at ]`, `[ start_date, username, created_at ]`, `[ end_date, path, true_path ]`, `[ end_date, path, remote_ip ]`, `[ end_date, path, success ]`, `[ end_date, path, status ]`, `[ end_date, path, action_type ]`, `[ end_date, path, username ]`, `[ end_date, path, created_at ]`, `[ end_date, true_path, remote_ip ]`, `[ end_date, true_path, success ]`, `[ end_date, true_path, status ]`, `[ end_date, true_path, action_type ]`, `[ end_date, true_path, username ]`, `[ end_date, true_path, created_at ]`, `[ end_date, remote_ip, success ]`, `[ end_date, remote_ip, status ]`, `[ end_date, remote_ip, action_type ]`, `[ end_date, remote_ip, username ]`, `[ end_date, remote_ip, created_at ]`, `[ end_date, success, status ]`, `[ end_date, success, action_type ]`, `[ end_date, success, username ]`, `[ end_date, success, created_at ]`, `[ end_date, status, action_type ]`, `[ end_date, status, username ]`, `[ end_date, status, created_at ]`, `[ end_date, action_type, username ]`, `[ end_date, action_type, created_at ]`, `[ end_date, username, created_at ]`, `[ path, true_path, remote_ip ]`, `[ path, true_path, success ]`, `[ path, true_path, status ]`, `[ path, true_path, action_type ]`, `[ path, true_path, username ]`, `[ path, true_path, created_at ]`, `[ path, remote_ip, success ]`, `[ path, remote_ip, status ]`, `[ path, remote_ip, action_type ]`, `[ path, remote_ip, username ]`, `[ path, remote_ip, created_at ]`, `[ path, success, status ]`, `[ path, success, action_type ]`, `[ path, success, username ]`, `[ path, success, created_at ]`, `[ path, status, action_type ]`, `[ path, status, username ]`, `[ path, status, created_at ]`, `[ path, action_type, username ]`, `[ path, action_type, created_at ]`, `[ path, username, created_at ]`, `[ true_path, remote_ip, success ]`, `[ true_path, remote_ip, status ]`, `[ true_path, remote_ip, action_type ]`, `[ true_path, remote_ip, username ]`, `[ true_path, remote_ip, created_at ]`, `[ true_path, success, status ]`, `[ true_path, success, action_type ]`, `[ true_path, success, username ]`, `[ true_path, success, created_at ]`, `[ true_path, status, action_type ]`, `[ true_path, status, username ]`, `[ true_path, status, created_at ]`, `[ true_path, action_type, username ]`, `[ true_path, action_type, created_at ]`, `[ true_path, username, created_at ]`, `[ remote_ip, success, status ]`, `[ remote_ip, success, action_type ]`, `[ remote_ip, success, username ]`, `[ remote_ip, success, created_at ]`, `[ remote_ip, status, action_type ]`, `[ remote_ip, status, username ]`, `[ remote_ip, status, created_at ]`, `[ remote_ip, action_type, username ]`, `[ remote_ip, action_type, created_at ]`, `[ remote_ip, username, created_at ]`, `[ success, status, action_type ]`, `[ success, status, username ]`, `[ success, status, created_at ]`, `[ success, action_type, username ]`, `[ success, action_type, created_at ]`, `[ success, username, created_at ]`, `[ status, action_type, username ]`, `[ status, action_type, created_at ]`, `[ status, username, created_at ]`, `[ action_type, username, created_at ]`, `[ start_date, end_date, path, true_path ]`, `[ start_date, end_date, path, remote_ip ]`, `[ start_date, end_date, path, success ]`, `[ start_date, end_date, path, status ]`, `[ start_date, end_date, path, action_type ]`, `[ start_date, end_date, path, username ]`, `[ start_date, end_date, path, created_at ]`, `[ start_date, end_date, true_path, remote_ip ]`, `[ start_date, end_date, true_path, success ]`, `[ start_date, end_date, true_path, status ]`, `[ start_date, end_date, true_path, action_type ]`, `[ start_date, end_date, true_path, username ]`, `[ start_date, end_date, true_path, created_at ]`, `[ start_date, end_date, remote_ip, success ]`, `[ start_date, end_date, remote_ip, status ]`, `[ start_date, end_date, remote_ip, action_type ]`, `[ start_date, end_date, remote_ip, username ]`, `[ start_date, end_date, remote_ip, created_at ]`, `[ start_date, end_date, success, status ]`, `[ start_date, end_date, success, action_type ]`, `[ start_date, end_date, success, username ]`, `[ start_date, end_date, success, created_at ]`, `[ start_date, end_date, status, action_type ]`, `[ start_date, end_date, status, username ]`, `[ start_date, end_date, status, created_at ]`, `[ start_date, end_date, action_type, username ]`, `[ start_date, end_date, action_type, created_at ]`, `[ start_date, end_date, username, created_at ]`, `[ start_date, path, true_path, remote_ip ]`, `[ start_date, path, true_path, success ]`, `[ start_date, path, true_path, status ]`, `[ start_date, path, true_path, action_type ]`, `[ start_date, path, true_path, username ]`, `[ start_date, path, true_path, created_at ]`, `[ start_date, path, remote_ip, success ]`, `[ start_date, path, remote_ip, status ]`, `[ start_date, path, remote_ip, action_type ]`, `[ start_date, path, remote_ip, username ]`, `[ start_date, path, remote_ip, created_at ]`, `[ start_date, path, success, status ]`, `[ start_date, path, success, action_type ]`, `[ start_date, path, success, username ]`, `[ start_date, path, success, created_at ]`, `[ start_date, path, status, action_type ]`, `[ start_date, path, status, username ]`, `[ start_date, path, status, created_at ]`, `[ start_date, path, action_type, username ]`, `[ start_date, path, action_type, created_at ]`, `[ start_date, path, username, created_at ]`, `[ start_date, true_path, remote_ip, success ]`, `[ start_date, true_path, remote_ip, status ]`, `[ start_date, true_path, remote_ip, action_type ]`, `[ start_date, true_path, remote_ip, username ]`, `[ start_date, true_path, remote_ip, created_at ]`, `[ start_date, true_path, success, status ]`, `[ start_date, true_path, success, action_type ]`, `[ start_date, true_path, success, username ]`, `[ start_date, true_path, success, created_at ]`, `[ start_date, true_path, status, action_type ]`, `[ start_date, true_path, status, username ]`, `[ start_date, true_path, status, created_at ]`, `[ start_date, true_path, action_type, username ]`, `[ start_date, true_path, action_type, created_at ]`, `[ start_date, true_path, username, created_at ]`, `[ start_date, remote_ip, success, status ]`, `[ start_date, remote_ip, success, action_type ]`, `[ start_date, remote_ip, success, username ]`, `[ start_date, remote_ip, success, created_at ]`, `[ start_date, remote_ip, status, action_type ]`, `[ start_date, remote_ip, status, username ]`, `[ start_date, remote_ip, status, created_at ]`, `[ start_date, remote_ip, action_type, username ]`, `[ start_date, remote_ip, action_type, created_at ]`, `[ start_date, remote_ip, username, created_at ]`, `[ start_date, success, status, action_type ]`, `[ start_date, success, status, username ]`, `[ start_date, success, status, created_at ]`, `[ start_date, success, action_type, username ]`, `[ start_date, success, action_type, created_at ]`, `[ start_date, success, username, created_at ]`, `[ start_date, status, action_type, username ]`, `[ start_date, status, action_type, created_at ]`, `[ start_date, status, username, created_at ]`, `[ start_date, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip ]`, `[ end_date, path, true_path, success ]`, `[ end_date, path, true_path, status ]`, `[ end_date, path, true_path, action_type ]`, `[ end_date, path, true_path, username ]`, `[ end_date, path, true_path, created_at ]`, `[ end_date, path, remote_ip, success ]`, `[ end_date, path, remote_ip, status ]`, `[ end_date, path, remote_ip, action_type ]`, `[ end_date, path, remote_ip, username ]`, `[ end_date, path, remote_ip, created_at ]`, `[ end_date, path, success, status ]`, `[ end_date, path, success, action_type ]`, `[ end_date, path, success, username ]`, `[ end_date, path, success, created_at ]`, `[ end_date, path, status, action_type ]`, `[ end_date, path, status, username ]`, `[ end_date, path, status, created_at ]`, `[ end_date, path, action_type, username ]`, `[ end_date, path, action_type, created_at ]`, `[ end_date, path, username, created_at ]`, `[ end_date, true_path, remote_ip, success ]`, `[ end_date, true_path, remote_ip, status ]`, `[ end_date, true_path, remote_ip, action_type ]`, `[ end_date, true_path, remote_ip, username ]`, `[ end_date, true_path, remote_ip, created_at ]`, `[ end_date, true_path, success, status ]`, `[ end_date, true_path, success, action_type ]`, `[ end_date, true_path, success, username ]`, `[ end_date, true_path, success, created_at ]`, `[ end_date, true_path, status, action_type ]`, `[ end_date, true_path, status, username ]`, `[ end_date, true_path, status, created_at ]`, `[ end_date, true_path, action_type, username ]`, `[ end_date, true_path, action_type, created_at ]`, `[ end_date, true_path, username, created_at ]`, `[ end_date, remote_ip, success, status ]`, `[ end_date, remote_ip, success, action_type ]`, `[ end_date, remote_ip, success, username ]`, `[ end_date, remote_ip, success, created_at ]`, `[ end_date, remote_ip, status, action_type ]`, `[ end_date, remote_ip, status, username ]`, `[ end_date, remote_ip, status, created_at ]`, `[ end_date, remote_ip, action_type, username ]`, `[ end_date, remote_ip, action_type, created_at ]`, `[ end_date, remote_ip, username, created_at ]`, `[ end_date, success, status, action_type ]`, `[ end_date, success, status, username ]`, `[ end_date, success, status, created_at ]`, `[ end_date, success, action_type, username ]`, `[ end_date, success, action_type, created_at ]`, `[ end_date, success, username, created_at ]`, `[ end_date, status, action_type, username ]`, `[ end_date, status, action_type, created_at ]`, `[ end_date, status, username, created_at ]`, `[ end_date, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success ]`, `[ path, true_path, remote_ip, status ]`, `[ path, true_path, remote_ip, action_type ]`, `[ path, true_path, remote_ip, username ]`, `[ path, true_path, remote_ip, created_at ]`, `[ path, true_path, success, status ]`, `[ path, true_path, success, action_type ]`, `[ path, true_path, success, username ]`, `[ path, true_path, success, created_at ]`, `[ path, true_path, status, action_type ]`, `[ path, true_path, status, username ]`, `[ path, true_path, status, created_at ]`, `[ path, true_path, action_type, username ]`, `[ path, true_path, action_type, created_at ]`, `[ path, true_path, username, created_at ]`, `[ path, remote_ip, success, status ]`, `[ path, remote_ip, success, action_type ]`, `[ path, remote_ip, success, username ]`, `[ path, remote_ip, success, created_at ]`, `[ path, remote_ip, status, action_type ]`, `[ path, remote_ip, status, username ]`, `[ path, remote_ip, status, created_at ]`, `[ path, remote_ip, action_type, username ]`, `[ path, remote_ip, action_type, created_at ]`, `[ path, remote_ip, username, created_at ]`, `[ path, success, status, action_type ]`, `[ path, success, status, username ]`, `[ path, success, status, created_at ]`, `[ path, success, action_type, username ]`, `[ path, success, action_type, created_at ]`, `[ path, success, username, created_at ]`, `[ path, status, action_type, username ]`, `[ path, status, action_type, created_at ]`, `[ path, status, username, created_at ]`, `[ path, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status ]`, `[ true_path, remote_ip, success, action_type ]`, `[ true_path, remote_ip, success, username ]`, `[ true_path, remote_ip, success, created_at ]`, `[ true_path, remote_ip, status, action_type ]`, `[ true_path, remote_ip, status, username ]`, `[ true_path, remote_ip, status, created_at ]`, `[ true_path, remote_ip, action_type, username ]`, `[ true_path, remote_ip, action_type, created_at ]`, `[ true_path, remote_ip, username, created_at ]`, `[ true_path, success, status, action_type ]`, `[ true_path, success, status, username ]`, `[ true_path, success, status, created_at ]`, `[ true_path, success, action_type, username ]`, `[ true_path, success, action_type, created_at ]`, `[ true_path, success, username, created_at ]`, `[ true_path, status, action_type, username ]`, `[ true_path, status, action_type, created_at ]`, `[ true_path, status, username, created_at ]`, `[ true_path, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type ]`, `[ remote_ip, success, status, username ]`, `[ remote_ip, success, status, created_at ]`, `[ remote_ip, success, action_type, username ]`, `[ remote_ip, success, action_type, created_at ]`, `[ remote_ip, success, username, created_at ]`, `[ remote_ip, status, action_type, username ]`, `[ remote_ip, status, action_type, created_at ]`, `[ remote_ip, status, username, created_at ]`, `[ remote_ip, action_type, username, created_at ]`, `[ success, status, action_type, username ]`, `[ success, status, action_type, created_at ]`, `[ success, status, username, created_at ]`, `[ success, action_type, username, created_at ]`, `[ status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip ]`, `[ start_date, end_date, path, true_path, success ]`, `[ start_date, end_date, path, true_path, status ]`, `[ start_date, end_date, path, true_path, action_type ]`, `[ start_date, end_date, path, true_path, username ]`, `[ start_date, end_date, path, true_path, created_at ]`, `[ start_date, end_date, path, remote_ip, success ]`, `[ start_date, end_date, path, remote_ip, status ]`, `[ start_date, end_date, path, remote_ip, action_type ]`, `[ start_date, end_date, path, remote_ip, username ]`, `[ start_date, end_date, path, remote_ip, created_at ]`, `[ start_date, end_date, path, success, status ]`, `[ start_date, end_date, path, success, action_type ]`, `[ start_date, end_date, path, success, username ]`, `[ start_date, end_date, path, success, created_at ]`, `[ start_date, end_date, path, status, action_type ]`, `[ start_date, end_date, path, status, username ]`, `[ start_date, end_date, path, status, created_at ]`, `[ start_date, end_date, path, action_type, username ]`, `[ start_date, end_date, path, action_type, created_at ]`, `[ start_date, end_date, path, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success ]`, `[ start_date, end_date, true_path, remote_ip, status ]`, `[ start_date, end_date, true_path, remote_ip, action_type ]`, `[ start_date, end_date, true_path, remote_ip, username ]`, `[ start_date, end_date, true_path, remote_ip, created_at ]`, `[ start_date, end_date, true_path, success, status ]`, `[ start_date, end_date, true_path, success, action_type ]`, `[ start_date, end_date, true_path, success, username ]`, `[ start_date, end_date, true_path, success, created_at ]`, `[ start_date, end_date, true_path, status, action_type ]`, `[ start_date, end_date, true_path, status, username ]`, `[ start_date, end_date, true_path, status, created_at ]`, `[ start_date, end_date, true_path, action_type, username ]`, `[ start_date, end_date, true_path, action_type, created_at ]`, `[ start_date, end_date, true_path, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status ]`, `[ start_date, end_date, remote_ip, success, action_type ]`, `[ start_date, end_date, remote_ip, success, username ]`, `[ start_date, end_date, remote_ip, success, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type ]`, `[ start_date, end_date, remote_ip, status, username ]`, `[ start_date, end_date, remote_ip, status, created_at ]`, `[ start_date, end_date, remote_ip, action_type, username ]`, `[ start_date, end_date, remote_ip, action_type, created_at ]`, `[ start_date, end_date, remote_ip, username, created_at ]`, `[ start_date, end_date, success, status, action_type ]`, `[ start_date, end_date, success, status, username ]`, `[ start_date, end_date, success, status, created_at ]`, `[ start_date, end_date, success, action_type, username ]`, `[ start_date, end_date, success, action_type, created_at ]`, `[ start_date, end_date, success, username, created_at ]`, `[ start_date, end_date, status, action_type, username ]`, `[ start_date, end_date, status, action_type, created_at ]`, `[ start_date, end_date, status, username, created_at ]`, `[ start_date, end_date, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success ]`, `[ start_date, path, true_path, remote_ip, status ]`, `[ start_date, path, true_path, remote_ip, action_type ]`, `[ start_date, path, true_path, remote_ip, username ]`, `[ start_date, path, true_path, remote_ip, created_at ]`, `[ start_date, path, true_path, success, status ]`, `[ start_date, path, true_path, success, action_type ]`, `[ start_date, path, true_path, success, username ]`, `[ start_date, path, true_path, success, created_at ]`, `[ start_date, path, true_path, status, action_type ]`, `[ start_date, path, true_path, status, username ]`, `[ start_date, path, true_path, status, created_at ]`, `[ start_date, path, true_path, action_type, username ]`, `[ start_date, path, true_path, action_type, created_at ]`, `[ start_date, path, true_path, username, created_at ]`, `[ start_date, path, remote_ip, success, status ]`, `[ start_date, path, remote_ip, success, action_type ]`, `[ start_date, path, remote_ip, success, username ]`, `[ start_date, path, remote_ip, success, created_at ]`, `[ start_date, path, remote_ip, status, action_type ]`, `[ start_date, path, remote_ip, status, username ]`, `[ start_date, path, remote_ip, status, created_at ]`, `[ start_date, path, remote_ip, action_type, username ]`, `[ start_date, path, remote_ip, action_type, created_at ]`, `[ start_date, path, remote_ip, username, created_at ]`, `[ start_date, path, success, status, action_type ]`, `[ start_date, path, success, status, username ]`, `[ start_date, path, success, status, created_at ]`, `[ start_date, path, success, action_type, username ]`, `[ start_date, path, success, action_type, created_at ]`, `[ start_date, path, success, username, created_at ]`, `[ start_date, path, status, action_type, username ]`, `[ start_date, path, status, action_type, created_at ]`, `[ start_date, path, status, username, created_at ]`, `[ start_date, path, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status ]`, `[ start_date, true_path, remote_ip, success, action_type ]`, `[ start_date, true_path, remote_ip, success, username ]`, `[ start_date, true_path, remote_ip, success, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type ]`, `[ start_date, true_path, remote_ip, status, username ]`, `[ start_date, true_path, remote_ip, status, created_at ]`, `[ start_date, true_path, remote_ip, action_type, username ]`, `[ start_date, true_path, remote_ip, action_type, created_at ]`, `[ start_date, true_path, remote_ip, username, created_at ]`, `[ start_date, true_path, success, status, action_type ]`, `[ start_date, true_path, success, status, username ]`, `[ start_date, true_path, success, status, created_at ]`, `[ start_date, true_path, success, action_type, username ]`, `[ start_date, true_path, success, action_type, created_at ]`, `[ start_date, true_path, success, username, created_at ]`, `[ start_date, true_path, status, action_type, username ]`, `[ start_date, true_path, status, action_type, created_at ]`, `[ start_date, true_path, status, username, created_at ]`, `[ start_date, true_path, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type ]`, `[ start_date, remote_ip, success, status, username ]`, `[ start_date, remote_ip, success, status, created_at ]`, `[ start_date, remote_ip, success, action_type, username ]`, `[ start_date, remote_ip, success, action_type, created_at ]`, `[ start_date, remote_ip, success, username, created_at ]`, `[ start_date, remote_ip, status, action_type, username ]`, `[ start_date, remote_ip, status, action_type, created_at ]`, `[ start_date, remote_ip, status, username, created_at ]`, `[ start_date, remote_ip, action_type, username, created_at ]`, `[ start_date, success, status, action_type, username ]`, `[ start_date, success, status, action_type, created_at ]`, `[ start_date, success, status, username, created_at ]`, `[ start_date, success, action_type, username, created_at ]`, `[ start_date, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success ]`, `[ end_date, path, true_path, remote_ip, status ]`, `[ end_date, path, true_path, remote_ip, action_type ]`, `[ end_date, path, true_path, remote_ip, username ]`, `[ end_date, path, true_path, remote_ip, created_at ]`, `[ end_date, path, true_path, success, status ]`, `[ end_date, path, true_path, success, action_type ]`, `[ end_date, path, true_path, success, username ]`, `[ end_date, path, true_path, success, created_at ]`, `[ end_date, path, true_path, status, action_type ]`, `[ end_date, path, true_path, status, username ]`, `[ end_date, path, true_path, status, created_at ]`, `[ end_date, path, true_path, action_type, username ]`, `[ end_date, path, true_path, action_type, created_at ]`, `[ end_date, path, true_path, username, created_at ]`, `[ end_date, path, remote_ip, success, status ]`, `[ end_date, path, remote_ip, success, action_type ]`, `[ end_date, path, remote_ip, success, username ]`, `[ end_date, path, remote_ip, success, created_at ]`, `[ end_date, path, remote_ip, status, action_type ]`, `[ end_date, path, remote_ip, status, username ]`, `[ end_date, path, remote_ip, status, created_at ]`, `[ end_date, path, remote_ip, action_type, username ]`, `[ end_date, path, remote_ip, action_type, created_at ]`, `[ end_date, path, remote_ip, username, created_at ]`, `[ end_date, path, success, status, action_type ]`, `[ end_date, path, success, status, username ]`, `[ end_date, path, success, status, created_at ]`, `[ end_date, path, success, action_type, username ]`, `[ end_date, path, success, action_type, created_at ]`, `[ end_date, path, success, username, created_at ]`, `[ end_date, path, status, action_type, username ]`, `[ end_date, path, status, action_type, created_at ]`, `[ end_date, path, status, username, created_at ]`, `[ end_date, path, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status ]`, `[ end_date, true_path, remote_ip, success, action_type ]`, `[ end_date, true_path, remote_ip, success, username ]`, `[ end_date, true_path, remote_ip, success, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type ]`, `[ end_date, true_path, remote_ip, status, username ]`, `[ end_date, true_path, remote_ip, status, created_at ]`, `[ end_date, true_path, remote_ip, action_type, username ]`, `[ end_date, true_path, remote_ip, action_type, created_at ]`, `[ end_date, true_path, remote_ip, username, created_at ]`, `[ end_date, true_path, success, status, action_type ]`, `[ end_date, true_path, success, status, username ]`, `[ end_date, true_path, success, status, created_at ]`, `[ end_date, true_path, success, action_type, username ]`, `[ end_date, true_path, success, action_type, created_at ]`, `[ end_date, true_path, success, username, created_at ]`, `[ end_date, true_path, status, action_type, username ]`, `[ end_date, true_path, status, action_type, created_at ]`, `[ end_date, true_path, status, username, created_at ]`, `[ end_date, true_path, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type ]`, `[ end_date, remote_ip, success, status, username ]`, `[ end_date, remote_ip, success, status, created_at ]`, `[ end_date, remote_ip, success, action_type, username ]`, `[ end_date, remote_ip, success, action_type, created_at ]`, `[ end_date, remote_ip, success, username, created_at ]`, `[ end_date, remote_ip, status, action_type, username ]`, `[ end_date, remote_ip, status, action_type, created_at ]`, `[ end_date, remote_ip, status, username, created_at ]`, `[ end_date, remote_ip, action_type, username, created_at ]`, `[ end_date, success, status, action_type, username ]`, `[ end_date, success, status, action_type, created_at ]`, `[ end_date, success, status, username, created_at ]`, `[ end_date, success, action_type, username, created_at ]`, `[ end_date, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status ]`, `[ path, true_path, remote_ip, success, action_type ]`, `[ path, true_path, remote_ip, success, username ]`, `[ path, true_path, remote_ip, success, created_at ]`, `[ path, true_path, remote_ip, status, action_type ]`, `[ path, true_path, remote_ip, status, username ]`, `[ path, true_path, remote_ip, status, created_at ]`, `[ path, true_path, remote_ip, action_type, username ]`, `[ path, true_path, remote_ip, action_type, created_at ]`, `[ path, true_path, remote_ip, username, created_at ]`, `[ path, true_path, success, status, action_type ]`, `[ path, true_path, success, status, username ]`, `[ path, true_path, success, status, created_at ]`, `[ path, true_path, success, action_type, username ]`, `[ path, true_path, success, action_type, created_at ]`, `[ path, true_path, success, username, created_at ]`, `[ path, true_path, status, action_type, username ]`, `[ path, true_path, status, action_type, created_at ]`, `[ path, true_path, status, username, created_at ]`, `[ path, true_path, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type ]`, `[ path, remote_ip, success, status, username ]`, `[ path, remote_ip, success, status, created_at ]`, `[ path, remote_ip, success, action_type, username ]`, `[ path, remote_ip, success, action_type, created_at ]`, `[ path, remote_ip, success, username, created_at ]`, `[ path, remote_ip, status, action_type, username ]`, `[ path, remote_ip, status, action_type, created_at ]`, `[ path, remote_ip, status, username, created_at ]`, `[ path, remote_ip, action_type, username, created_at ]`, `[ path, success, status, action_type, username ]`, `[ path, success, status, action_type, created_at ]`, `[ path, success, status, username, created_at ]`, `[ path, success, action_type, username, created_at ]`, `[ path, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type ]`, `[ true_path, remote_ip, success, status, username ]`, `[ true_path, remote_ip, success, status, created_at ]`, `[ true_path, remote_ip, success, action_type, username ]`, `[ true_path, remote_ip, success, action_type, created_at ]`, `[ true_path, remote_ip, success, username, created_at ]`, `[ true_path, remote_ip, status, action_type, username ]`, `[ true_path, remote_ip, status, action_type, created_at ]`, `[ true_path, remote_ip, status, username, created_at ]`, `[ true_path, remote_ip, action_type, username, created_at ]`, `[ true_path, success, status, action_type, username ]`, `[ true_path, success, status, action_type, created_at ]`, `[ true_path, success, status, username, created_at ]`, `[ true_path, success, action_type, username, created_at ]`, `[ true_path, status, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type, username ]`, `[ remote_ip, success, status, action_type, created_at ]`, `[ remote_ip, success, status, username, created_at ]`, `[ remote_ip, success, action_type, username, created_at ]`, `[ remote_ip, status, action_type, username, created_at ]`, `[ success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success ]`, `[ start_date, end_date, path, true_path, remote_ip, status ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, username ]`, `[ start_date, end_date, path, true_path, remote_ip, created_at ]`, `[ start_date, end_date, path, true_path, success, status ]`, `[ start_date, end_date, path, true_path, success, action_type ]`, `[ start_date, end_date, path, true_path, success, username ]`, `[ start_date, end_date, path, true_path, success, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type ]`, `[ start_date, end_date, path, true_path, status, username ]`, `[ start_date, end_date, path, true_path, status, created_at ]`, `[ start_date, end_date, path, true_path, action_type, username ]`, `[ start_date, end_date, path, true_path, action_type, created_at ]`, `[ start_date, end_date, path, true_path, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status ]`, `[ start_date, end_date, path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, remote_ip, success, username ]`, `[ start_date, end_date, path, remote_ip, success, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, remote_ip, status, username ]`, `[ start_date, end_date, path, remote_ip, status, created_at ]`, `[ start_date, end_date, path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type ]`, `[ start_date, end_date, path, success, status, username ]`, `[ start_date, end_date, path, success, status, created_at ]`, `[ start_date, end_date, path, success, action_type, username ]`, `[ start_date, end_date, path, success, action_type, created_at ]`, `[ start_date, end_date, path, success, username, created_at ]`, `[ start_date, end_date, path, status, action_type, username ]`, `[ start_date, end_date, path, status, action_type, created_at ]`, `[ start_date, end_date, path, status, username, created_at ]`, `[ start_date, end_date, path, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, username ]`, `[ start_date, end_date, true_path, remote_ip, success, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, status, username ]`, `[ start_date, end_date, true_path, remote_ip, status, created_at ]`, `[ start_date, end_date, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type ]`, `[ start_date, end_date, true_path, success, status, username ]`, `[ start_date, end_date, true_path, success, status, created_at ]`, `[ start_date, end_date, true_path, success, action_type, username ]`, `[ start_date, end_date, true_path, success, action_type, created_at ]`, `[ start_date, end_date, true_path, success, username, created_at ]`, `[ start_date, end_date, true_path, status, action_type, username ]`, `[ start_date, end_date, true_path, status, action_type, created_at ]`, `[ start_date, end_date, true_path, status, username, created_at ]`, `[ start_date, end_date, true_path, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type ]`, `[ start_date, end_date, remote_ip, success, status, username ]`, `[ start_date, end_date, remote_ip, success, status, created_at ]`, `[ start_date, end_date, remote_ip, success, action_type, username ]`, `[ start_date, end_date, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, remote_ip, success, username, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type, username ]`, `[ start_date, end_date, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, remote_ip, status, username, created_at ]`, `[ start_date, end_date, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, success, status, action_type, username ]`, `[ start_date, end_date, success, status, action_type, created_at ]`, `[ start_date, end_date, success, status, username, created_at ]`, `[ start_date, end_date, success, action_type, username, created_at ]`, `[ start_date, end_date, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status ]`, `[ start_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, path, true_path, remote_ip, success, username ]`, `[ start_date, path, true_path, remote_ip, success, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, path, true_path, remote_ip, status, username ]`, `[ start_date, path, true_path, remote_ip, status, created_at ]`, `[ start_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, path, true_path, remote_ip, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type ]`, `[ start_date, path, true_path, success, status, username ]`, `[ start_date, path, true_path, success, status, created_at ]`, `[ start_date, path, true_path, success, action_type, username ]`, `[ start_date, path, true_path, success, action_type, created_at ]`, `[ start_date, path, true_path, success, username, created_at ]`, `[ start_date, path, true_path, status, action_type, username ]`, `[ start_date, path, true_path, status, action_type, created_at ]`, `[ start_date, path, true_path, status, username, created_at ]`, `[ start_date, path, true_path, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type ]`, `[ start_date, path, remote_ip, success, status, username ]`, `[ start_date, path, remote_ip, success, status, created_at ]`, `[ start_date, path, remote_ip, success, action_type, username ]`, `[ start_date, path, remote_ip, success, action_type, created_at ]`, `[ start_date, path, remote_ip, success, username, created_at ]`, `[ start_date, path, remote_ip, status, action_type, username ]`, `[ start_date, path, remote_ip, status, action_type, created_at ]`, `[ start_date, path, remote_ip, status, username, created_at ]`, `[ start_date, path, remote_ip, action_type, username, created_at ]`, `[ start_date, path, success, status, action_type, username ]`, `[ start_date, path, success, status, action_type, created_at ]`, `[ start_date, path, success, status, username, created_at ]`, `[ start_date, path, success, action_type, username, created_at ]`, `[ start_date, path, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, true_path, remote_ip, success, status, username ]`, `[ start_date, true_path, remote_ip, success, status, created_at ]`, `[ start_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, true_path, remote_ip, success, username, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, true_path, remote_ip, status, username, created_at ]`, `[ start_date, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, true_path, success, status, action_type, username ]`, `[ start_date, true_path, success, status, action_type, created_at ]`, `[ start_date, true_path, success, status, username, created_at ]`, `[ start_date, true_path, success, action_type, username, created_at ]`, `[ start_date, true_path, status, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type, username ]`, `[ start_date, remote_ip, success, status, action_type, created_at ]`, `[ start_date, remote_ip, success, status, username, created_at ]`, `[ start_date, remote_ip, success, action_type, username, created_at ]`, `[ start_date, remote_ip, status, action_type, username, created_at ]`, `[ start_date, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status ]`, `[ end_date, path, true_path, remote_ip, success, action_type ]`, `[ end_date, path, true_path, remote_ip, success, username ]`, `[ end_date, path, true_path, remote_ip, success, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type ]`, `[ end_date, path, true_path, remote_ip, status, username ]`, `[ end_date, path, true_path, remote_ip, status, created_at ]`, `[ end_date, path, true_path, remote_ip, action_type, username ]`, `[ end_date, path, true_path, remote_ip, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type ]`, `[ end_date, path, true_path, success, status, username ]`, `[ end_date, path, true_path, success, status, created_at ]`, `[ end_date, path, true_path, success, action_type, username ]`, `[ end_date, path, true_path, success, action_type, created_at ]`, `[ end_date, path, true_path, success, username, created_at ]`, `[ end_date, path, true_path, status, action_type, username ]`, `[ end_date, path, true_path, status, action_type, created_at ]`, `[ end_date, path, true_path, status, username, created_at ]`, `[ end_date, path, true_path, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type ]`, `[ end_date, path, remote_ip, success, status, username ]`, `[ end_date, path, remote_ip, success, status, created_at ]`, `[ end_date, path, remote_ip, success, action_type, username ]`, `[ end_date, path, remote_ip, success, action_type, created_at ]`, `[ end_date, path, remote_ip, success, username, created_at ]`, `[ end_date, path, remote_ip, status, action_type, username ]`, `[ end_date, path, remote_ip, status, action_type, created_at ]`, `[ end_date, path, remote_ip, status, username, created_at ]`, `[ end_date, path, remote_ip, action_type, username, created_at ]`, `[ end_date, path, success, status, action_type, username ]`, `[ end_date, path, success, status, action_type, created_at ]`, `[ end_date, path, success, status, username, created_at ]`, `[ end_date, path, success, action_type, username, created_at ]`, `[ end_date, path, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type ]`, `[ end_date, true_path, remote_ip, success, status, username ]`, `[ end_date, true_path, remote_ip, success, status, created_at ]`, `[ end_date, true_path, remote_ip, success, action_type, username ]`, `[ end_date, true_path, remote_ip, success, action_type, created_at ]`, `[ end_date, true_path, remote_ip, success, username, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type, username ]`, `[ end_date, true_path, remote_ip, status, action_type, created_at ]`, `[ end_date, true_path, remote_ip, status, username, created_at ]`, `[ end_date, true_path, remote_ip, action_type, username, created_at ]`, `[ end_date, true_path, success, status, action_type, username ]`, `[ end_date, true_path, success, status, action_type, created_at ]`, `[ end_date, true_path, success, status, username, created_at ]`, `[ end_date, true_path, success, action_type, username, created_at ]`, `[ end_date, true_path, status, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type, username ]`, `[ end_date, remote_ip, success, status, action_type, created_at ]`, `[ end_date, remote_ip, success, status, username, created_at ]`, `[ end_date, remote_ip, success, action_type, username, created_at ]`, `[ end_date, remote_ip, status, action_type, username, created_at ]`, `[ end_date, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type ]`, `[ path, true_path, remote_ip, success, status, username ]`, `[ path, true_path, remote_ip, success, status, created_at ]`, `[ path, true_path, remote_ip, success, action_type, username ]`, `[ path, true_path, remote_ip, success, action_type, created_at ]`, `[ path, true_path, remote_ip, success, username, created_at ]`, `[ path, true_path, remote_ip, status, action_type, username ]`, `[ path, true_path, remote_ip, status, action_type, created_at ]`, `[ path, true_path, remote_ip, status, username, created_at ]`, `[ path, true_path, remote_ip, action_type, username, created_at ]`, `[ path, true_path, success, status, action_type, username ]`, `[ path, true_path, success, status, action_type, created_at ]`, `[ path, true_path, success, status, username, created_at ]`, `[ path, true_path, success, action_type, username, created_at ]`, `[ path, true_path, status, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type, username ]`, `[ path, remote_ip, success, status, action_type, created_at ]`, `[ path, remote_ip, success, status, username, created_at ]`, `[ path, remote_ip, success, action_type, username, created_at ]`, `[ path, remote_ip, status, action_type, username, created_at ]`, `[ path, success, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type, username ]`, `[ true_path, remote_ip, success, status, action_type, created_at ]`, `[ true_path, remote_ip, success, status, username, created_at ]`, `[ true_path, remote_ip, success, action_type, username, created_at ]`, `[ true_path, remote_ip, status, action_type, username, created_at ]`, `[ true_path, success, status, action_type, username, created_at ]`, `[ remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type ]`, `[ start_date, end_date, path, true_path, success, status, username ]`, `[ start_date, end_date, path, true_path, success, status, created_at ]`, `[ start_date, end_date, path, true_path, success, action_type, username ]`, `[ start_date, end_date, path, true_path, success, action_type, created_at ]`, `[ start_date, end_date, path, true_path, success, username, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type, username ]`, `[ start_date, end_date, path, true_path, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, status, username, created_at ]`, `[ start_date, end_date, path, true_path, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type, username ]`, `[ start_date, end_date, path, success, status, action_type, created_at ]`, `[ start_date, end_date, path, success, status, username, created_at ]`, `[ start_date, end_date, path, success, action_type, username, created_at ]`, `[ start_date, end_date, path, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type, username ]`, `[ start_date, end_date, true_path, success, status, action_type, created_at ]`, `[ start_date, end_date, true_path, success, status, username, created_at ]`, `[ start_date, end_date, true_path, success, action_type, username, created_at ]`, `[ start_date, end_date, true_path, status, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, path, true_path, remote_ip, success, status, created_at ]`, `[ start_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, success, username, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, status, username, created_at ]`, `[ start_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type, username ]`, `[ start_date, path, true_path, success, status, action_type, created_at ]`, `[ start_date, path, true_path, success, status, username, created_at ]`, `[ start_date, path, true_path, success, action_type, username, created_at ]`, `[ start_date, path, true_path, status, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, path, remote_ip, success, status, username, created_at ]`, `[ start_date, path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, path, success, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, true_path, success, status, action_type, username, created_at ]`, `[ start_date, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ end_date, path, true_path, remote_ip, success, status, username ]`, `[ end_date, path, true_path, remote_ip, success, status, created_at ]`, `[ end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, success, username, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, status, username, created_at ]`, `[ end_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type, username ]`, `[ end_date, path, true_path, success, status, action_type, created_at ]`, `[ end_date, path, true_path, success, status, username, created_at ]`, `[ end_date, path, true_path, success, action_type, username, created_at ]`, `[ end_date, path, true_path, status, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type, username ]`, `[ end_date, path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, path, remote_ip, success, status, username, created_at ]`, `[ end_date, path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, path, success, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ end_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, true_path, remote_ip, success, status, username, created_at ]`, `[ end_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, true_path, success, status, action_type, username, created_at ]`, `[ end_date, remote_ip, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type, username ]`, `[ path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ path, true_path, remote_ip, success, status, username, created_at ]`, `[ path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ path, true_path, success, status, action_type, username, created_at ]`, `[ path, remote_ip, success, status, action_type, username, created_at ]`, `[ true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, success, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, success, status, username, created_at ]`, `[ start_date, end_date, path, true_path, success, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, status, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, path, true_path, success, status, action_type, username, created_at ]`, `[ start_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ end_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ end_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ end_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ end_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ end_date, path, true_path, success, status, action_type, username, created_at ]`, `[ end_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ end_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ path, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type, username ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, action_type, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, status, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, success, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, remote_ip, status, action_type, username, created_at ]`, `[ start_date, end_date, path, true_path, success, status, action_type, username, created_at ]`, `[ start_date, end_date, path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, end_date, true_path, remote_ip, success, status, action_type, username, created_at ]`, `[ start_date, path, true_path, remote_ip, success, status, action_type, username, created_at ]` or `[ end_date, path, true_path, remote_ip, success, status, action_type, username, created_at ]`.
|