[DOCS] add missing comma in percentile_rank aggregation example

This commit is contained in:
olivier bourgain 2015-02-21 10:19:11 +01:00 committed by Luca Cavanna
parent fb7cd2ea9a
commit bcb4decca9
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ Let's look at a range of percentiles representing load time:
"aggs" : { "aggs" : {
"load_time_outlier" : { "load_time_outlier" : {
"percentile_ranks" : { "percentile_ranks" : {
"field" : "load_time" <1> "field" : "load_time", <1>
"values" : [15, 30] "values" : [15, 30]
} }
} }