Hi,
have searched a bit here already. I found many similar questions but no answers. I hope to not annoy by asking: How can I configure the default sorting fields and order in Discover?
To make my point, I could basically copy the request from here: Sorting on custom field.
The major point in there is this:
I would like sort by this [sequence] field automatically, without doing it in Discover manually.
At best, kibana would sort the events by timestamp first and sort the field with the same timestamp by the sequence number.
The topic referred above was closed automatically without further info on solutions/approaches.
I'm using elasticsearch 6.3 with kibana 6.3. What does the Management > Advanced Settings > sort:options really do -- it seems to be ignored completely by now!? Documentation link on that one is not helpful because...
...if I use the Dev Tools > Console and do e.g.
GET _search
{
"query": {
"match": {
"@timestamp" : "2018-07-10T12:46:20.615Z" }
},
"sort": [
{ "@timestamp" : "desc" },
{ "sequence" : "desc" }
]
}
I get the result I want (see quote above).
How do I get Discover to search the same way?
Thanks, indeed!