Update default index name to .kibana instead of .opensearch-dashboards (#742)

Signed-off-by: jeffhuss <jeffhuss@amazon.com>
This commit is contained in:
Jeff Huss 2022-06-30 13:02:33 -07:00 committed by GitHub
parent 9699fe7a53
commit d7088636b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -37,7 +37,7 @@ config:
opensearch-dashboards: opensearch-dashboards:
multitenancy_enabled: true multitenancy_enabled: true
server_username: opensearch server_username: opensearch
index: '.opensearch-dashboards' index: '.kibana'
do_not_fail_on_forbidden: false do_not_fail_on_forbidden: false
``` ```
@ -45,7 +45,7 @@ Setting | Description
:--- | :--- :--- | :---
`multitenancy_enabled` | Enable or disable multi-tenancy. Default is true. `multitenancy_enabled` | Enable or disable multi-tenancy. Default is true.
`server_username` | Must match the name of the OpenSearch Dashboards server user from `opensearch_dashboards.yml`. Default is `dashboardserver`. `server_username` | Must match the name of the OpenSearch Dashboards server user from `opensearch_dashboards.yml`. Default is `dashboardserver`.
`index` | Must match the name of the OpenSearch Dashboards index from `opensearch_dashboards.yml`. Default is `.opensearch-dashboards`. `index` | Must match the name of the OpenSearch Dashboards index from `opensearch_dashboards.yml`. Default is `.kibana`.
`do_not_fail_on_forbidden` | If true, the security plugin removes any content that a user is not allowed to see from search results. If false, the plugin returns a security exception. Default is false. `do_not_fail_on_forbidden` | If true, the security plugin removes any content that a user is not allowed to see from search results. If false, the plugin returns a security exception. Default is false.
`opensearch_dashboards.yml` has some additional settings: `opensearch_dashboards.yml` has some additional settings:
@ -155,14 +155,14 @@ _meta:
## Manage OpenSearch Dashboards indices ## Manage OpenSearch Dashboards indices
The open source version of OpenSearch Dashboards saves all objects to a single index: `.opensearch-dashboards`. The security plugin uses this index for the global tenant, but separate indices for every other tenant. Each user also has a private tenant, so you might see a large number of indices that follow two patterns: The open source version of OpenSearch Dashboards saves all objects to a single index: `.kibana`. The security plugin uses this index for the global tenant, but separate indices for every other tenant. Each user also has a private tenant, so you might see a large number of indices that follow two patterns:
``` ```
.opensearch-dashboards_<hash>_<tenant_name> .kibana_<hash>_<tenant_name>
.opensearch-dashboards_<hash>_<username> .kibana_<hash>_<username>
``` ```
The security plugin scrubs these index names of special characters, so they might not be a perfect match of tenant names and usernames. The security plugin scrubs these index names of special characters, so they might not be a perfect match of tenant names and usernames.
{: .tip } {: .tip }
To back up your OpenSearch Dashboards data, [take a snapshot]({{site.url}}{{site.baseurl}}/opensearch/snapshot-restore/) of all tenant indices using an index pattern such as `.opensearch-dashboards*`. To back up your OpenSearch Dashboards data, [take a snapshot]({{site.url}}{{site.baseurl}}/opensearch/snapshot-restore/) of all tenant indices using an index pattern such as `.kibana*`.