Fixed non-valid JSON (though ES would accept it)

This commit is contained in:
Shane Connelly 2015-09-01 13:17:07 -07:00
parent 930a5ee170
commit 5e385d5bf2
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ A `bucket_script` aggregation looks like this in isolation:
"my_var1": "the_sum", <1>
"my_var2": "the_value_count"
},
script: "my_var1 / my_var2"
"script": "my_var1 / my_var2"
}
}
--------------------------------------------------

View File

@ -25,7 +25,7 @@ A `bucket_selector` aggregation looks like this in isolation:
"my_var1": "the_sum", <1>
"my_var2": "the_value_count"
},
script: "my_var1 > my_var2"
"script": "my_var1 > my_var2"
}
}
--------------------------------------------------