Questions tagged [esquery]

4 questions
0
votes
1 answer

ES query to Kibana lucene query conversion

I am trying to convert the below ES query to Kibana lucene query but I dont understand the basics, unable to find the examples too. { "query": { "bool": { "must": [{ "query_string": { …
san1512
  • 914
  • 1
  • 9
  • 16
0
votes
1 answer

Elasticsearch query using of Must and must not

In ES query i have IP field , now i want to exclude some IP's series. ip series which should excluded :192.168.0.0/16 here is query trying nd I'm getting error. { "size": 0, "query": { "bool": { "filter": [ { "match_all": { …
mkail
  • 5
  • 2
0
votes
1 answer

Elasticsearch query : how to use terms query with Range?

im new to Elasticsearch, how to use terms query with range? Or how to modify if this is not possible here is my query { "size": 0, "query": { "terms": { "action": [ "created", "updated", "deleted" ] } }, "aggs": { "2": { …
mkail
  • 5
  • 2
-1
votes
1 answer

elastic query scipting issue using painless

A functional script query is working fine when i dont add certain scripts to it but it fails and returns > [script] Too many dynamic script compilations within, max: [75/5m]; please use indexed, or scripts with parameters instead; this limit can be…