-
Notifications
You must be signed in to change notification settings - Fork 1
Quick Start
Garot Conklin edited this page Apr 29, 2025
·
2 revisions
- AWS Account with appropriate permissions
- Python 3.12 installed
- Terraform 1.5+ installed
- AWS CLI configured
# Clone the repository
git clone https://github.com/fleXRPL/CloudOpsAI.git
cd CloudOpsAI
# Initialize the project
source ./scripts/init.sh
# Deploy infrastructure
cd terraform
terraform init
terraform apply# config/rules.yaml
rules:
- name: "HighCPU_Alert"
trigger:
metric: "CPUUtilization"
threshold: 90
actions:
- type: "notify"
channel: "slack"# Check Lambda function
aws lambda list-functions | grep cloudopsai
# Test CloudWatch integration
aws cloudwatch set-alarm-state \
--alarm-name test-alarm \
--state-value ALARM \
--state-reason "Testing CloudOpsAI"Report Bug | Request Feature | Documentation | Contributing Guidelines
© 2025 fleXRPL. All Rights Reserved.