Start free with observe mode. Upgrade to unlock the full trust ladder with intelligent AI root cause analysis.
$0USD
Perfect for getting started with SLO monitoring and learning Reflex automation.
$149/month
Unlock the full trust ladder with unlimited automations and intelligent AI-driven incident analysis.
The trust ladder is Reflex's unique approach to automation safety. Start in observe mode to learn what actions would be taken, graduate to dry-run mode for approval-based execution, then finally auto mode for immediate responses. Build confidence gradually.
Pro tier includes intelligent analysis of SLO breaches that goes beyond basic alerts. Instead of just "SLO breached", you get contextualized insights like: "Breach caused by deployment spike. Pattern: bad deploy detected. Recommendation: rollback to api-gateway:v2.1.3. Confidence: 94%". Our AI analyzes patterns, workload types, and system context to provide actionable recommendations with confidence scores.
Yes, you can cancel anytime from your subscription portal. Your Pro features will remain active until the end of your billing period, then your installation will automatically revert to Free tier limitations.
Reflex runs entirely within your Kubernetes cluster. No metrics or cluster data leaves your environment. Only license validation requires external communication. Your data stays in your control.
Robusta requires writing custom Python playbooks for each remediation scenario. Reflex is SLO-native — you define a target and an action, and the trust ladder handles when and how to execute. No playbook code to write. Works in 15 minutes.
That's exactly why the trust ladder exists. Start in observe mode — Reflex logs what it would do but takes no action. Promote to dry-run for Slack-approved execution. Only move to auto mode when you're confident. Each reflex is promoted independently.
No. Reflex includes an auto-discovery CLI that scans your Prometheus metrics and suggests SLO targets based on your actual service performance. Most teams go from zero SLOs to monitored services in under 5 minutes.
You provide your own OpenAI API key. AI analysis runs inside your cluster — breach context is sent to OpenAI for analysis, but your Prometheus metrics and cluster data never leave your environment. You control the cost via your own OpenAI spending limits.
# Add Reflex chart repository helm repo add reflex https://charts.reflexslo.io helm repo update # Install free tier (observe mode, 3 SLOs) helm install reflex reflex/reflex-runtime \ --set prometheus.url="http://prometheus:9090" # Install with Pro license (after purchase) helm install reflex reflex/reflex-runtime \ --set license.key="YOUR_LICENSE_KEY" \ --set prometheus.url="http://prometheus:9090" \ --set slack.webhookUrl="https://hooks.slack.com/services/..." # Auto-discover SLOs from your Prometheus metrics # (download from GitHub Releases) reflex setup --prometheus-url http://localhost:9090