(cherry picked from commit f737290d10)
Co-authored-by: Josh Mock <joshua.mock@elastic.co>
30 lines
515 B
Plaintext
30 lines
515 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: "logs",
|
|
size: 0,
|
|
aggs: {
|
|
messages: {
|
|
filters: {
|
|
filters: [
|
|
{
|
|
match: {
|
|
body: "error",
|
|
},
|
|
},
|
|
{
|
|
match: {
|
|
body: "warning",
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|