Versions (relevant - OpenSearch/Dashboard/Server OS/Browser):
OpenSearch and OpenSearch Dashboard version 2.8.0 (hosted on Aiven, doubt that’s relevant)
Describe the issue:
I’ve got some indexes containing time-series data. I’ve got an ISM policy that, after three days, performs a rollup on the data to a single destination index.
For the original source indeces I’m able to create an index pattern and create visualisations and assemble them into a dashboard for the live data.
I want to create an equivalent dashboard for the rollup data but this is where I’m having problems. In order to create a visualisation I need an index pattern to use as the source, but I’m unable to create an index pattern for the rollup index. The backend is sending an empty reply to one of the calls in the background. Copying the failing request as curl, gives me something like the following (trimmed for readability)
➜ ~ curl 'http://localhost:7000/api/index_patterns/_fields_for_wildcard?pattern=my-rollup-index-2023&meta_fields=_source&meta_fields=_id&meta_fields=_type&meta_fields=_index&meta_fields=_score' \
-H 'Accept: */*' \
-H 'Accept-Language: en-US,en;q=0.9,no;q=0.8' \
-H 'Authorization: Basic <SECRET>' \
-H 'Content-Type: application/json' \
--compressed
curl: (52) Empty reply from server
Is this supposed to work for rollup indexes? If not how do I create the visualisation over my rollup data? I feel like I’m missing something obvious here.
I see that Elastic/Kibana has a dedicated index pattern type for rollup indexes but I find no such similar functionality in OpenSearch Dashboards.