13 lines
370 B
Plaintext
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);
|
|
----
|