Files
elasticsearch-js/docs/doc_examples/8c693e057f6e85fbf2b56ca442719362.asciidoc
2024-07-29 17:10:05 -05:00

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);
----