files.com 1.1.265 → 1.1.267
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.
- checksums.yaml +4 -4
- data/_VERSION +1 -1
- data/docs/api_request_log.md +10 -4
- data/docs/as2_partner.md +4 -4
- data/docs/automation_log.md +10 -4
- data/docs/email_log.md +10 -4
- data/docs/exavault_api_request_log.md +10 -4
- data/docs/file_migration_log.md +10 -4
- data/docs/ftp_action_log.md +10 -4
- data/docs/outbound_connection_log.md +10 -4
- data/docs/public_hosting_request_log.md +10 -4
- data/docs/sftp_action_log.md +10 -4
- data/docs/sync_log.md +10 -4
- data/docs/web_dav_action_log.md +10 -4
- data/lib/files.com/models/api_request_log.rb +16 -3
- data/lib/files.com/models/as2_partner.rb +4 -4
- data/lib/files.com/models/automation_log.rb +16 -3
- data/lib/files.com/models/email_log.rb +16 -3
- data/lib/files.com/models/exavault_api_request_log.rb +16 -3
- data/lib/files.com/models/file_migration_log.rb +16 -3
- data/lib/files.com/models/ftp_action_log.rb +16 -3
- data/lib/files.com/models/outbound_connection_log.rb +16 -3
- data/lib/files.com/models/public_hosting_request_log.rb +16 -3
- data/lib/files.com/models/sftp_action_log.rb +16 -3
- data/lib/files.com/models/sync_log.rb +16 -3
- data/lib/files.com/models/web_dav_action_log.rb +16 -3
- data/lib/files.com/version.rb +1 -1
- metadata +2 -2
data/docs/web_dav_action_log.md
CHANGED
@@ -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 @@ Files::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 ]`.
|