16 lines
342 B
Plaintext
16 lines
342 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: "<logstash-{now/d-2d}>,<logstash-{now/d-1d}>,<logstash-{now/d}>",
|
|
query: {
|
|
match: {
|
|
test: "data",
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|