Hi,
I wrote a query that asks for all messages ever sent, in a certain time range.
When looking at the data recieved there are only 10 logs in the output. How can I get all the logs from this time range.
index: 'filebeat-*',
type: 'log',
body:
{
"query": {
"bool":{
"must": [
{ "match": {"recordType":"MT"}},
{ "range": {
"MedGotMsgFromApi": {
"gte": gte,
"lte": lte
}
}
}
]
}
}
}
})