files.com 1.1.266 → 1.1.268
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/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/site.md +4 -0
- data/docs/sync.md +275 -0
- data/docs/sync_log.md +10 -4
- data/docs/sync_run.md +81 -0
- 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/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/site.rb +6 -0
- data/lib/files.com/models/sync.rb +426 -0
- data/lib/files.com/models/sync_log.rb +16 -3
- data/lib/files.com/models/sync_run.rb +148 -0
- data/lib/files.com/models/web_dav_action_log.rb +16 -3
- data/lib/files.com/version.rb +1 -1
- data/lib/files.com.rb +2 -0
- metadata +6 -2
@@ -9,7 +9,7 @@ module Files
|
|
9
9
|
@options = options || {}
|
10
10
|
end
|
11
11
|
|
12
|
-
# date-time - Start Time of Action
|
12
|
+
# date-time - Start Time of Action. Deprecrated: Use created_at.
|
13
13
|
def timestamp
|
14
14
|
@attributes[:timestamp]
|
15
15
|
end
|
@@ -94,16 +94,29 @@ module Files
|
|
94
94
|
@attributes[:duration_ms]
|
95
95
|
end
|
96
96
|
|
97
|
+
# date-time - Start Time of Action
|
98
|
+
def created_at
|
99
|
+
@attributes[:created_at]
|
100
|
+
end
|
101
|
+
|
97
102
|
# Parameters:
|
98
103
|
# 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.
|
99
104
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
100
|
-
# 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 ]`.
|
101
|
-
# 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 ]`.
|
105
|
+
# 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 ]`.
|
106
|
+
# 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 ]`.
|
107
|
+
# 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 ]`.
|
108
|
+
# 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 ]`.
|
109
|
+
# 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 ]`.
|
110
|
+
# 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 ]`.
|
102
111
|
def self.list(params = {}, options = {})
|
103
112
|
raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params[:cursor] and !params[:cursor].is_a?(String)
|
104
113
|
raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params[:per_page] and !params[:per_page].is_a?(Integer)
|
105
114
|
raise InvalidParameterError.new("Bad parameter: filter must be an Hash") if params[:filter] and !params[:filter].is_a?(Hash)
|
115
|
+
raise InvalidParameterError.new("Bad parameter: filter_gt must be an Hash") if params[:filter_gt] and !params[:filter_gt].is_a?(Hash)
|
116
|
+
raise InvalidParameterError.new("Bad parameter: filter_gteq must be an Hash") if params[:filter_gteq] and !params[:filter_gteq].is_a?(Hash)
|
106
117
|
raise InvalidParameterError.new("Bad parameter: filter_prefix must be an Hash") if params[:filter_prefix] and !params[:filter_prefix].is_a?(Hash)
|
118
|
+
raise InvalidParameterError.new("Bad parameter: filter_lt must be an Hash") if params[:filter_lt] and !params[:filter_lt].is_a?(Hash)
|
119
|
+
raise InvalidParameterError.new("Bad parameter: filter_lteq must be an Hash") if params[:filter_lteq] and !params[:filter_lteq].is_a?(Hash)
|
107
120
|
|
108
121
|
List.new(WebDavActionLog, params) do
|
109
122
|
Api.send_request("/web_dav_action_logs", :get, params, options)
|