[DOCS] Fixes example aggregation syntax in datafeed aggregations. (#64936) (#64943)

This commit is contained in:
István Zoltán Szabó 2020-11-11 17:17:00 +01:00 committed by GitHub
parent 75b4af5833
commit 5893d51d42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -298,12 +298,13 @@ determine the cardinality of your data, you can run searches such as:
[source,js]
--------------------------------------------------
GET .../_search {
GET .../_search
{
"aggs": {
"service_cardinality": {
"cardinality": {
"field": "service"
}
}
}
}
}