Artificial Intelligence
AI Debugging
Ask questions about your logs in plain English and get instant insights powered by AI.
No Query Languages Required
Forget about learning KQL, SQL, or CloudWatch Insights syntax. Just ask questions like you would to a teammate.
How It Works
1. Ask
Type your question in plain English.
2. Analyze
AI searches and analyzes relevant logs.
3. Answer
Get insights with links to source logs.
Example Questions
"Why did checkout fail for users in Germany yesterday?"
AI: Analysis of 47 errors: 42 were Stripe gateway timeouts, 5 were invalid VAT validation.
"Show me all database timeout errors in the last hour"
AI: Found 23 database timeout errors on the "orders" table with query execution times > 30s.
"What's causing the spike in 500 errors?"
AI: 500 errors increased 300%. Root cause: Redis connection pool exhausted (max 50).
AI Queries by Tier
| Tier | Queries/Day | Features |
|---|---|---|
| Indie | 10/day | Basic queries |
| Bootstrapper | 30/day | + Automatic error analysis |
| Compliance | 50/day | + Real-time AI alerts |
| Scale | 250/day | + Priority processing |
Automatic Error Analysis
On Bootstrapper+ tiers, every unique error is automatically analyzed as it arrives. You don't even have to ask—the insights are waiting for you in the dashboard.
// Example automatic analysis
{
"errorId": "err_v2_998",
"ai_insight": {
"rootCause": "Redis connection pool exhausted",
"severity": "high",
"suggestedFix": "Increase connection pool size from 50 to 100",
"confidence": 0.94
}
}