Kibana control in visualization not showing all values than expected

kibana control in visualization not showing all values than expected.iam using 7.2 kibana

The list of values are fetched with a terms aggregation. This aggregation sets timeout and terminate_after to avoid long running requests. This can result in trimmed results since the aggregation request can terminate before all documents are considered.

In Kibana 7.3.0 and higher, you can configure these settings with kibana.autocompleteTimeout and kibana.autocompleteTerminateAfter. See https://www.elastic.co/guide/en/kibana/current/settings.html for more details

Hi nathan,

Thank you for the solution. but am not getting what is the relation between missing drop down values in control panel and timeout settings..
can you pls explain

The Terms aggregation shows the most frequently occurring tokens, and the timeout and terminate_after settings limit this even further. The best option to see more tokens is to increase those settings. If you are looking for a low-frequency term, there is still a chance that it will not appear at all because of this.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.