39 lines
657 B
Plaintext
39 lines
657 B
Plaintext
// This file is autogenerated, DO NOT EDIT
|
|
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
|
|
|
|
[source, js]
|
|
----
|
|
const response = await client.search({
|
|
index: "stats-index",
|
|
size: 0,
|
|
aggs: {
|
|
metric_min: {
|
|
min: {
|
|
field: "agg_metric",
|
|
},
|
|
},
|
|
metric_max: {
|
|
max: {
|
|
field: "agg_metric",
|
|
},
|
|
},
|
|
metric_value_count: {
|
|
value_count: {
|
|
field: "agg_metric",
|
|
},
|
|
},
|
|
metric_sum: {
|
|
sum: {
|
|
field: "agg_metric",
|
|
},
|
|
},
|
|
metric_avg: {
|
|
avg: {
|
|
field: "agg_metric",
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|