-
Notifications
You must be signed in to change notification settings - Fork 2
Action Dispatcher
Garot Conklin edited this page Apr 29, 2025
·
1 revision
The Action Dispatcher executes remediation actions based on AI decisions. It handles:
- AWS service interactions
- External system notifications
- Remediation tracking
- EC2 instance management
- Auto Scaling operations
- RDS modifications
- Systems Manager commands
- Slack notifications
- PagerDuty alerts
- ServiceNow tickets
- Email notifications
class ActionDispatcher:
async def execute_actions(self, decision):
# AWS Service actions
if action.type == "aws":
await self._execute_aws_action()
# External notifications
elif action.type == "notify":
await self._send_notification()- Retry logic for failed actions
- Rollback procedures
- Error notifications
- Audit logging
Report Bug | Request Feature | Documentation | Contributing Guidelines
© 2025 fleXRPL. All Rights Reserved.