Reputation: 443
I want to query integer range.I'm saying simply my concept is min <= field <= max so I gave it in Kibana visualize like field:(>= min AND <= max).I think this is right query but it didn't work sometimes.I have list of integer values are 9466,9577,24342,24355,24665.
I tried to like below
field:(>=9000 AND <=25000)
It return 24342,24355,24665.This is not proper result.Output should come 9466,9577,24342,24355,24665.where is the problem happen.I don't know.Any solution?
Upvotes: 0
Views: 1223
Reputation: 217254
You need to use the Lucene query syntax language:
field:[9000 TO 25000]
Upvotes: 2