-
Notifications
You must be signed in to change notification settings - Fork 815
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature: basic support for incident.io in Argo Workflows #2245
Conversation
metaflow/metaflow_config.py
Outdated
# Incident.io | ||
INCIDENT_IO_API_KEY = from_conf("INCIDENT_IO_API_KEY", None) | ||
INCIDENT_IO_SUCCESS_SEVERITY_ID = from_conf("INCIDENT_IO_SUCCESS_SEVERITY_ID", None) | ||
INCIDENT_IO_ERROR_SEVERITY_ID = from_conf("INCIDENT_IO_ERROR_SEVERITY_ID", None) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we dont provide any of these as config options today for slack - can we lift them to cli args?
"Notifications require specifying an incoming Slack webhook url via --notify-slack-webhook-url or " | ||
"PagerDuty events v2 integration key via --notify-pager-duty-integration-key.\n If you would like to set up " | ||
"Notifications require specifying an incoming Slack webhook url via --notify-slack-webhook-url, " | ||
"PagerDuty events v2 integration key via --notify-pager-duty-integration-key or Incident.io integration API key via --notify-incident-io-api-key.\n If you would like to set up " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit - line length
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm pending minor comments
adds basic support for incident.io alerts through Argo Workflows