admin管理员组

文章数量:1123003

I'm using opensearch dashboard with opensearch (OpenSearch 2.17 ) and I'm displaying my data based on an index template (let's say main-data-*) and in my data I've got a field called "error_code".

Now I need to add a new item (visualization or other) to the dashboard with the error description (error_code, title, category, etc) that is an index called errors-description that needs to be linked with main-data-*.error_code.

I tried adding a search item (over the errors-description index) and the data displays well, even filtering by error_code on other dashboard items and the item search it works like a charm. But if I filter by any other field, les't say main_data_field the search item show no data (because main_data_field is not part of errors-description index)

Is there any alternative to display parametric data linked to the main index pattern that does not break all the filtering?

本文标签: Display parametric data in opensearch dashboardStack Overflow