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

31 lines
595 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.watcher.putWatch({
id: "cluster_health_watch",
trigger: {
schedule: {
interval: "10s",
},
},
input: {
http: {
request: {
host: "localhost",
port: 9200,
path: "/_cluster/health",
auth: {
basic: {
username: "elastic",
password: "x-pack-test-password",
},
},
},
},
},
});
console.log(response);
----