Hi Everyone,
I am trying to build an AI-powered incident response automation workflow called “AutoSentry AI Bot” in Make and would appreciate guidance from the community.
Objective
Automate production incident handling for API failures and 5xx alerts.
Current Workflow Requirement
-
Monitoring system sends alerts to Slack channel (#prod-alerts)
-
Make should watch Slack messages
-
Detect messages containing:
-
“5xx”
-
“API failed”
-
“Server error”
-
-
Send alert message to OpenAI for AI classification
-
AI should classify alerts as:
-
Critical
-
Warning
-
Info
-
-
If Critical:
-
Send escalation message in Slack
-
Tag stakeholders/manager
-
Automatically create Google Meet / Zoom bridge call
-
Send email notification to support team
-
Optionally create Jira incident ticket
-
-
Prevent duplicate alerts within 5 minutes
-
Maintain incident logs/history
Tools Involved
-
Slack
-
Make
-
OpenAI API
-
Gmail / Outlook
-
Google Calendar / Zoom
-
Jira
What I Need Help With
-
Best architecture design in Make
-
Router/filter setup
-
Duplicate alert suppression
-
AI response parsing
-
Google Meet automation
-
Error handling/retry logic
-
Recommended scenario structure for production use