mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Elasticsearch: Update required database version to 7.16 (#66928)
elasticsearch: update database requirements
This commit is contained in:
parent
c742503d2c
commit
53d5a996b8
@ -30,7 +30,7 @@ Once you've added the Elasticsearch data source, you can [configure it]({{< relr
|
||||
|
||||
This data source supports these versions of Elasticsearch:
|
||||
|
||||
- v7.10+
|
||||
- v7.16+
|
||||
- v8.x
|
||||
|
||||
## Configure the data source
|
||||
|
@ -92,7 +92,7 @@ export const getScriptValue = (metric: MetricAggregationWithInlineScript) =>
|
||||
(typeof metric.settings?.script === 'object' ? metric.settings?.script?.inline : metric.settings?.script) || '';
|
||||
|
||||
export const isSupportedVersion = (version: SemVer): boolean => {
|
||||
if (gte(version, '7.10.0')) {
|
||||
if (gte(version, '7.16.0')) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -100,4 +100,4 @@ export const isSupportedVersion = (version: SemVer): boolean => {
|
||||
};
|
||||
|
||||
export const unsupportedVersionMessage =
|
||||
'Support for Elasticsearch versions after their end-of-life (currently versions < 7.10) was removed. Using unsupported version of Elasticsearch may lead to unexpected and incorrect results.';
|
||||
'Support for Elasticsearch versions after their end-of-life (currently versions < 7.16) was removed. Using unsupported version of Elasticsearch may lead to unexpected and incorrect results.';
|
||||
|
Loading…
Reference in New Issue
Block a user