I can search in Kibana for entries with a particular timestamp:
GET dms-info/_search
{
"query": {
"match": {
"TimeOfArrival" : "2020-06-30T13:19:36Z"
}
}
}
But how can I change this query so instead of "match", I get all results that came after this TimeOfArrival?
Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 10th July 2023
To achieve this you have to use the range query (see: Kibana docs)
As example:
GET dms-info/_search
{
“query”: {
“range”: {
“TimeOfArrival” :
{
"gt":“2020-06-30T13:19:36Z”
}
}
}
}
Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 10th July 2023