// 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: "my-watch", trigger: { schedule: { cron: "0 0/1 * * * ?", }, }, input: { search: { request: { indices: ["logstash*"], body: { query: { bool: { must: { match: { response: 404, }, }, filter: { range: { "@timestamp": { from: "{{ctx.trigger.scheduled_time}}||-5m", to: "{{ctx.trigger.triggered_time}}", }, }, }, }, }, }, }, }, }, condition: { compare: { "ctx.payload.hits.total": { gt: 0, }, }, }, actions: { email_admin: { email: { to: "admin@domain.host.com", subject: "404 recently encountered", }, }, }, }); console.log(response); ----