Elastic: Remove experimental tag from v8.0+ (#61359)

* docs: remove experimental tag from v8.0+

* feat: remove experimental description from es version config
This commit is contained in:
Gareth Dawson 2023-01-12 12:23:31 +00:00 committed by GitHub
parent 62633ba4a7
commit 51c30ba22d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

View File

@ -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: This data source supports these versions of Elasticsearch:
- v7.10+ - v7.10+
- v8.0+ (experimental) - v8.0+
## Configure the data source ## Configure the data source

View File

@ -17,11 +17,7 @@ const indexPatternTypes: Array<SelectableValue<'none' | Interval>> = [
const esVersions: SelectableValue[] = [ const esVersions: SelectableValue[] = [
{ label: '7.10+', value: '7.10.0' }, { label: '7.10+', value: '7.10.0' },
{ { label: '8.0+', value: '8.0.0' },
label: '8.0+',
value: '8.0.0',
description: 'support for Elasticsearch 8 is currently experimental',
},
]; ];
type Props = { type Props = {