[Telemetry] Check for 6.7.2 instead of 6.7.3 (#35814) (#35821)

The versioned documents should ignore ordinary 6.7.2 documents,
rather than only starting with 6.7.3 documents.
This commit is contained in:
Chris Earle 2019-04-30 13:56:51 -04:00 committed by GitHub
parent 55b3c7be50
commit f038883145
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -191,7 +191,7 @@ export async function fetchHighLevelStats(server, callCluster, clusterUuids, sta
{
bool: {
should: [
{ range: { 'kibana_stats.kibana.version': { lt: '6.7.3' } } },
{ range: { 'kibana_stats.kibana.version': { lt: '6.7.2' } } },
{ term: { 'kibana_stats.kibana.version': '7.0.0' } },
]
}