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

27 lines
539 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: "kibana_sample_data_ecommerce",
size: 0,
track_total_hits: "false",
aggregations: {
sampling: {
random_sampler: {
probability: 0.1,
},
aggs: {
price_percentiles: {
percentiles: {
field: "taxful_total_price",
},
},
},
},
},
});
console.log(response);
----