mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
This change unifies the way scripts and templates are specified for all instances in the codebase. It builds on the Script class added previously and adds request building and parsing support as well as the ability to transfer script objects between nodes. It also adds a Template class which aims to provide the same functionality for template APIs Closes #11091
74 lines
2.0 KiB
Plaintext
74 lines
2.0 KiB
Plaintext
[[search-aggregations-metrics-valuecount-aggregation]]
|
|
=== Value Count Aggregation
|
|
|
|
A `single-value` metrics aggregation that counts the number of values that are extracted from the aggregated documents.
|
|
These values can be extracted either from specific fields in the documents, or be generated by a provided script. Typically,
|
|
this aggregator will be used in conjunction with other single-value aggregations. For example, when computing the `avg`
|
|
one might be interested in the number of values the average is computed over.
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
{
|
|
"aggs" : {
|
|
"grades_count" : { "value_count" : { "field" : "grade" } }
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
|
|
Response:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
{
|
|
...
|
|
|
|
"aggregations": {
|
|
"grades_count": {
|
|
"value": 10
|
|
}
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
|
|
The name of the aggregation (`grades_count` above) also serves as the key by which the aggregation result can be
|
|
retrieved from the returned response.
|
|
|
|
==== Script
|
|
|
|
Counting the values generated by a script:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
{
|
|
...,
|
|
|
|
"aggs" : {
|
|
"grades_count" : { "value_count" : { "script" : "doc['grade'].value" } }
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
|
|
This will interpret the `script` parameter as an `inline` script with the default script language and no script parameters. To use a file script use the following syntax:
|
|
|
|
[source,js]
|
|
--------------------------------------------------
|
|
{
|
|
...,
|
|
|
|
"aggs" : {
|
|
"grades_count" : {
|
|
"value_count" : {
|
|
"script" : {
|
|
"file": "my_script",
|
|
"params" : {
|
|
"field" : "grade"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
--------------------------------------------------
|
|
|
|
TIP: for indexed scripts replace the `file` parameter with an `id` parameter.
|