Thanks for the help, tried in DEV tools works and copy pasted DSL query in kibana visual filter by query getting below error
[1:440] [bool] failed to parse field [filter]
which i tried
{
"aggs": {
"tags": {
"terms": {
"field": "CALLED_NUMBER.keyword",
"min_doc_count": 15
}
}
}
}
That filter shoud be a query for each document. Aggregation clause must be ignored.
If you want to filter only tems with 15 or more documents, you need something like Window function of SQL but there is no such query in Elasticsearch. You may have to take some quite different alternatives depending on your goals.
The real scenario is I need a table visual with tables split based on dates that is done,
In that table i feild (called_number) if it is repeting more than 15 times in that day and no of times its repeted count.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.