We already have an elasticsearch engine working and indexing our systems logs. Every morning we go over those logs, in our Kibana, looking for errors that shouldn't have happened (I'm saying "shouldn't have happened" because some error logs will happen from time to time, we're aware of these errors and already working on fixing them).
So, we created a dashboard mapping our errors, there we filter out the errors we're aware of (that aren't a concern). Every morning we check that dashboard for new errors, which we haven't seen before.
This sounds like a job for Watcher. So I created a watcher, and the query he runs is the same as the dashboard's (filters out any known errors, and counts if we have any new errors). My question is how can I update my watcher automatically from my dashboars? As I said, right now, I have to copy the query from the dashboard to the query in the watcher declaration every time we have a new error to filter, Can this be done automatically?
Thank you very much!