Sort Operator
Overview
Order data with sort
. The default sort order is descending.
Examples
Example data
Sort by a single field
p_event_time
clientIp
elbStatusCode
requestHttpVersion
2023-09-16 05:59:04.058
192.168.1.1
403
HTTP/1.1
2023-09-16 05:45:34.863
192.168.11.34
200
HTTP/1.1
2023-09-16 05:36:09.017
10.168.22.1
200
HTTP/1.1
2023-09-16 05:36:09.017
10.168.22.7
404
HTTP/2.0
Sort by multiple fields
You can specify multiple fields to sort by, each with a different sort order
p_event_time
clientIp
elbStatusCode
requestHttpVersion
2023-09-16 05:36:09.017
10.168.22.7
404
HTTP/2.0
2023-09-16 05:36:09.017
10.168.22.1
200
HTTP/1.1
2023-09-16 05:45:34.863
192.168.11.34
200
HTTP/1.1
2023-09-16 05:59:04.058
192.168.1.1
403
HTTP/1.1
Last updated