How to add a numeric filter on kibana dashboard?

user1742188 picture user1742188 · Oct 10, 2014 · Viewed 39.9k times · Source

I have a field that contains numbers. I want a filter that shows all logs that are less than a constant value. When I try to add a new query filter, all I can see is a query string option.

Answer

Alcanzar picture Alcanzar · Oct 10, 2014

If you are talking about the query field a syntax like this works:

field:<10

Will find just records with a field value less than 10. Found this by experimentation one day -- don't know if it's documented anywhere.