Closed
Description
Java API client version
8.5.1
Java version
17
Elasticsearch Version
8.5.1
Problem description
VariableWidthHistogramAggregation
is missing script
field. I have alread checked ES support script
field when we search histogram data like below.
GET test-index/_search
{
"size": 0,
"aggregations": {
"factors": {
"variable_width_histogram": {
"field": "testField",
"script": "Math.log10(_value)",
"buckets": 100
}
}
}
}
However, ES API client doesn't seem to support the script
field yet.
I use the histogram API in log scale, so can this API supports script
field?