Slack
You can set up Maestro Cloud to notify you and your team when a Flow fails. That's useful to easily keep track if your app is working as expected.
At this moment, we only support sending emails to Slack, but we are working on a more rich Slack integration. In order to get messages posted to a channel in your workspace, please follow these steps:
- 1.
- 2.

- 3.Update your
config.yaml
with the following to ensure emails are sent to your channel:
# .maestro/config.yaml
notifications:
email:
enabled: true
recipients:
... any other emails you want to send notifications to
Note that the
config.yaml
file should be present in the root of your workspace along with your Flows, which by default is .maestro
if you do not explicitly pass another folder as the workspace.- 4.That's it! When a Flow fails a message will be posted in your channel.
If you also want to be notified about successful uploads, add
onSuccess: true
to your config:# .maestro/config.yaml
notifications:
email:
enabled: true
onSuccess: true
recipients:
... any other emails you want to send success notifications to
Last modified 4mo ago