Getting Started

Set up AI-powered alert analysis in 5 minutes.

Prerequisites

Robusta SaaS account (free or paid)
✓ Robusta version 0.22.0 or higher

Use Robusta's hosted AI service with frontier models from Anthropic, OpenAI, and more:

  1. Add to your Helm values:

    enableHolmesGPT: true
    holmes:
      additionalEnvVars:
      - name: ROBUSTA_AI
        value: "true"
    
  2. Apply the changes:

    helm upgrade robusta robusta/robusta -f generated_values.yaml
    
  3. Enable Slack integration (optional):

    • Go to platform.robusta.dev

    • Navigate to SettingsAI Assistant

    • Toggle "Enable Holmes" and connect your Slack workspace

That's it! HolmesGPT will now analyze your alerts automatically.

Using Your Own AI Provider

Instead of Robusta AI, you can bring your own LLM provider (OpenAI, Azure, AWS Bedrock, Anthropic, and more). See the AI Providers documentation for setup instructions.

Using Existing Secrets

If you store the Robusta UI token in a Kubernetes secret (instead of directly in Helm values), you need to pass it to HolmesGPT:

holmes:
  additionalEnvVars:
  - name: ROBUSTA_UI_TOKEN
    valueFrom:
      secretKeyRef:
        name: my-robusta-secrets  # Your existing secret
        key: ui-token             # Your existing key

Next Steps