Skip to content

Commit b38406b

Browse files
authored
add docs for argo-workflows notify on success/error (#141)
1 parent 72d4845 commit b38406b

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

docs/production/scheduling-metaflow-flows/scheduling-with-argo-workflows.md

+34
Original file line numberDiff line numberDiff line change
@@ -303,3 +303,37 @@ decorator.
303303
You can test the staging flow freely without interfering with the production flow. Once
304304
the staging flow runs successfully, you can confidently deploy a new version to
305305
production.
306+
307+
## Notifications on flow success or error
308+
309+
On Argo Workflows we support sending notifications on a successful or failed flow. To enable notifications, supply the `--notify-on-success/--notify-on-error` flags while deploying your flow. You must also configure the notification provider. The ones currently supported are
310+
311+
### Slack notifications
312+
313+
In order to enable Slack notifications, we need to first create a webhook endpoing that Metaflow can send the notifications to by following the instructions at https://api.slack.com/messaging/webhooks
314+
315+
When this is done, a flow can be deployed with
316+
```bash
317+
python debug.py --notify-on-success --notify-on-error --notify-slack-webhook-url url-that-we-created
318+
```
319+
320+
### PagerDuty notifications
321+
322+
For notifications through PagerDuty, we need to generate an integration key by following the instructions at https://support.pagerduty.com/docs/services-and-integrations#create-a-generic-events-api-integration
323+
324+
Then the flow can be deployed with
325+
```bash
326+
python debug --notify-on-success --notify-on-error --notify-pager-duty-integration-key key-that-we-generated
327+
```
328+
329+
### Incident.io alerts
330+
331+
For notifications through Incident.io, generate an API key with a permission to *create incidents* on the websites *settings* page.
332+
333+
As Incident.io deals with incidents, every notification requires a severity. These can be supplied with the `--incident-io-success-severity-id/--incident-io-error-severity-id` options.
334+
335+
Once you have gathered all the necessary information, the flow can be deployed with
336+
337+
```bash
338+
python debug.py argo-workflows --notify-on-error --incident-io-error-severity-id severity-id-for-errors --notify-incident-io-api-key key-that-we-generated
339+
```

0 commit comments

Comments
 (0)