Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to configure number of results in Kibana 4

Tags:

kibana-4

We are using elasticsearch + kibana 4 for central logging system. But in dashboard (in a "search" table) I have only 10 pages of results by 50 entries. Because our system is composed of several applications cooperating each other 500 logs entries is often too little. Is it possible to configure number of results (per page and/or number of pages) in kibana 4? In kibana 3 I could configure this in dashboard settings, but I cannot find any options in Kibana 4.

like image 243
tomekK Avatar asked Jun 26 '15 11:06

tomekK


People also ask

How can I see full logs in Kibana?

View and query logs using DiscoverCreate a data view, to make your logs visible in Discover. In the deployment where your logs are stored, open Kibana. In the Analytics sidebar navigate to Discover. Select the data view you created, and you are ready to explore these logs in detail.

How do I customize my Kibana dashboard?

You can build your dashboard by adding visualizations. By default, Kibana dashboards use a light color theme. To use a dark color theme, click on the “Settings” button and check the “Use Dark Theme” box. To add a visualization to the dashboard, click the “Add Visualization” button in the toolbar panel.


1 Answers

I'm sorry, not sure what you mean with "search table". Are we talking about a "data-table"-type visualization, or something that has to do with the "discovery" tab, or something entirely different ?

The former has following param :

Settings > Object > yourDataTable > edit

"type": "table",
  "params": {
    "perPage": 10
  }

The latter has following :

Settings > Advanced

discover:sampleSize (Default: 500) 

(PS : sorry about posting an Answer instead of commenting, I don't have enough rep to add comment to your question)

like image 150
bezout Avatar answered Sep 24 '22 01:09

bezout