Elastic: Change elastic version 8.0+ to be more accurate (#61379)

fix: change elastic version 8.0+ to be more accurate
pull/61469/head^2
Gareth Dawson 2 years ago committed by GitHub
parent 4454d5eb49
commit 8ae4b9060b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/sources/datasources/elasticsearch/_index.md
  2. 2
      public/app/plugins/datasource/elasticsearch/configuration/ElasticDetails.tsx

@ -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+ - v8.x
## Configure the data source ## Configure the data source

@ -17,7 +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.x', value: '8.0.0' },
]; ];
type Props = { type Props = {

Loading…
Cancel
Save