I am creating a visualization. On x-axis I am doing a terms aggregation.
What is the right way for provide a series of values to be included.
This works.
This does not.
As per the documentation, a series of terms should have worked.
" For matching based on exact values the include
and exclude
parameters can simply take an array of strings that represent the terms as they are found in the index:"
"ActiveCarManufacturers" : {
"terms" : {
"field" : "make",
"exclude" : ["rover", "jensen"]
}
}
I tried with:
{"Volume_Run_01","Volume_Run_02"}
and
["Volume_Run_01","Volume_Run_02"]
Still no luck.