Are there plans to add op_hooks on the instance le...
# dagster-feedback
d
Are there plans to add op_hooks on the instance level? I would like to have the ability to set failure notifications in production in a centralized way.
c
One thing you could consider is using a
run_status_sensor
. There is a
monitor_all_repositories
argument that if set to
True
will monitor runs across the whole instance. You could use this to send notifications when any failures occur
d
Thanks. Will try it out!