From 51c30ba22dbb37b8b4fc7fdf7287b8185dd25f11 Mon Sep 17 00:00:00 2001 From: Gareth Dawson Date: Thu, 12 Jan 2023 12:23:31 +0000 Subject: [PATCH] Elastic: Remove experimental tag from v8.0+ (#61359) * docs: remove experimental tag from v8.0+ * feat: remove experimental description from es version config --- docs/sources/datasources/elasticsearch/_index.md | 2 +- .../elasticsearch/configuration/ElasticDetails.tsx | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/sources/datasources/elasticsearch/_index.md b/docs/sources/datasources/elasticsearch/_index.md index 63e08343d63..4ad5848e5b2 100644 --- a/docs/sources/datasources/elasticsearch/_index.md +++ b/docs/sources/datasources/elasticsearch/_index.md @@ -31,7 +31,7 @@ Once you've added the Elasticsearch data source, you can [configure it]({{< relr This data source supports these versions of Elasticsearch: - v7.10+ -- v8.0+ (experimental) +- v8.0+ ## Configure the data source diff --git a/public/app/plugins/datasource/elasticsearch/configuration/ElasticDetails.tsx b/public/app/plugins/datasource/elasticsearch/configuration/ElasticDetails.tsx index e31fb507a64..be770175068 100644 --- a/public/app/plugins/datasource/elasticsearch/configuration/ElasticDetails.tsx +++ b/public/app/plugins/datasource/elasticsearch/configuration/ElasticDetails.tsx @@ -17,11 +17,7 @@ const indexPatternTypes: Array> = [ const esVersions: SelectableValue[] = [ { label: '7.10+', value: '7.10.0' }, - { - label: '8.0+', - value: '8.0.0', - description: 'support for Elasticsearch 8 is currently experimental', - }, + { label: '8.0+', value: '8.0.0' }, ]; type Props = {