Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add a numeric filter on kibana dashboard?

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.

like image 659
user1742188 Avatar asked Oct 10 '14 16:10

user1742188


People also ask

How do I filter logs in Kibana dashboard?

Use the Logs app in Kibana to explore and filter your logs in real time. You can customize the output to focus on the data you want to see and to control how you see it. You can also view related application traces or uptime information where available.

How do I customize my Kibana dashboard?

Search and filter your dataedit For more information about Kibana and Elasticsearch filters, refer to Kibana concepts. To apply a panel-level time filter: Open the panel menu, then select More > Customize time range. Enter the time range you want to view, then click Add to panel.


1 Answers

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.

like image 123
Alcanzar Avatar answered Sep 25 '22 10:09

Alcanzar