Hello,
In the past months I have made several filter/control panel visualisations for multiple dashboards. These have all worked well, but with the most recent one I've ran into some problems.
We were experiencing some crashes in Kibana, so decided to add our scripted fields to the index to save some performance. One of these fields is the month field, this is a general field that just shows in which month this dataset (/doc) was added. We obviously have all 12 months in this field, which works great. But when trying to add a dropdown filter on this field so users can select a month, it only shows 3 out of the 12 months. Typing something in the bar also does not result in any more suggestions. These 3 (january, march, april) are all the months it can find in this filter.
We tried the following:
- Disabling the dynamic search options and trying several different values ranging up to 9999. No changes.
- Increasing the autocomplete.Timeout setting in the .yml from 1000 --> 5000, no changes.
- Increasing the autocomplete.Terminate setting in the .yml from 100000 --> 200000, no changes.
- Disabling the autocomplete.Terminate setting in the .yml and leaving the autocomplete.Timeout on 5000, no changes.
The fact that these somewhat big changes to these settings are not even adding a single value gives me the indication I might be looking in the wrong place.
Any other suggestions on things we can try?