Hi! I'm trying to do a DSL filter in Kibana, in order to filter by a large amount of values on a specific field. For this, I'm using this syntax:
{
"query": {
"bool": {
"filter": {
"terms": {
"ip": [
"185.231.86.130",
"166.24.243.98",
"155.171.113.115"
]
}
}
}
}
}
My question is: what's the maximum number of values that I can include inside the Terms part? Is it the same as the one defined for Elasticsearch, or does Kibana have a specific limitation in the DSL filter functionality?
Thanks a lot in advance for your support!