Why Elastic search is showing up only first 50 lines(events) in browser?

188 Views Asked by At

I am publishing events from Logstash to elastic search and console. After clicking on */_plugin/head/-->Browser tab-->created_index able to see only first 50 lines where as in console all lines i am seeing.

Why this strange behavior ? Please can one suggest ?

2

There are 2 best solutions below

0
On BEST ANSWER

It is better enough to modify \plugins\head_site\dist\app.js file in 846 line.No need to look for \plugins\head_site_site\app.js as it is hidden file.

3
On

It's a default from the head plugin. (by default elasticsearch returns only 10 results).

You can change that in the source of the plugin (but I have not tested if there's side effects):
In elasticsearch/plugins/head/_site/app.js:

data.Query = ux.Observable.extend({
        defaults: {
            cluster: null,  // (required) instanceof app.services.Cluster
            size: 50        // size of pages to return

You can replace 50 by whatever number you want.