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

13 lines
370 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.eql.search({
index: "my-index*",
query:
"\n sample by host\n [any where uptime > 0]\n [any where port > 100]\n [any where bool == true]\n ",
});
console.log(response);
----