From 4ddb86072745b002fba6d4f4f6bc9b730464aacb Mon Sep 17 00:00:00 2001 From: Qianli Ma Date: Mon, 10 Jun 2019 13:55:49 +0800 Subject: [PATCH] Docs: Fix a typo in Elasticsearch docs (#17492) --- docs/sources/features/datasources/elasticsearch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/features/datasources/elasticsearch.md b/docs/sources/features/datasources/elasticsearch.md index b7bec925776..aa19c455d00 100644 --- a/docs/sources/features/datasources/elasticsearch.md +++ b/docs/sources/features/datasources/elasticsearch.md @@ -118,7 +118,7 @@ The Elasticsearch data source supports two types of queries you can use in the * Query | Description ------------ | ------------- *{"find": "fields", "type": "keyword"}* | Returns a list of field names with the index type `keyword`. -*{"find": "terms", "field": "@hostname", "size": 1000}* | Returns a list of values for a field using term aggregation. Query will user current dashboard time range as time range for query. +*{"find": "terms", "field": "@hostname", "size": 1000}* | Returns a list of values for a field using term aggregation. Query will use current dashboard time range as time range for query. *{"find": "terms", "field": "@hostname", "query": ''}* | Returns a list of values for a field using term aggregation & and a specified lucene query filter. Query will use current dashboard time range as time range for query. There is a default size limit of 500 on terms queries. Set the size property in your query to set a custom limit.