30 lines
549 B
Plaintext
30 lines
549 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: ".watcher-history*",
|
|
pretty: "true",
|
|
query: {
|
|
bool: {
|
|
must: [
|
|
{
|
|
match: {
|
|
"result.condition.met": true,
|
|
},
|
|
},
|
|
{
|
|
range: {
|
|
"result.execution_time": {
|
|
gte: "now-10s",
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|