Skip to content

Commit

Permalink
Use .kibana as opensearch dashboards index
Browse files Browse the repository at this point in the history
Reporting is broken when using custom names for opensearch dashboards index - opensearch-project/dashboards-reporting#55
It works only for '.kibana'
  • Loading branch information
pondzix committed Sep 6, 2024
1 parent 49f958c commit dba3f97
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion provisioning/resources/elasticsearch/config/kibana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ opensearch.hosts: ["http://elasticsearch:9200"]

# Kibana uses an index in Elasticsearch to store saved searches, visualizations and
# dashboards. Kibana creates a new index if the index doesn't already exist.
opensearchDashboards.index: ".opensearch_dashboards"
# Reporting is broken if using different index than '.kibana'. See https://github.com/opensearch-project/dashboards-reporting/issues/55
opensearchDashboards.index: ".kibana"

# The default application to load.
opensearchDashboards.defaultAppId: "discover"

0 comments on commit dba3f97

Please sign in to comment.