Search code examples
kibana-4

How to configure number of results in 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.


Solution

  • 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)