Question about Watcher ( Xpack-Alerts)

Can Watcher be used to watch other enterprise entities other than elastic stack. For example polling to some table for some status change and alert based on that ? Or is it solely designed to look into elastic stack?

Thanks
Raees

It's only designed for ES.

Hey,

If your application is able to send HTTP requests, you could use the logstash HTTP input to index data into Elasticsearch and use watcher on top of that.

If your application has its own HTTP interface, you could use the HTTP input directly.

Watcher itself has no other means of peeking into other applications, it requires a push or pull architecture, where the other application is able to expose information about itself.

--Alex

1 Like

Thanks , this was what I was looking for