Daya

Alertmanager Configuration Changelog

Version 2.0.0 - Enhanced Configuration

Added

Improved

Changed

Removed

Migration Guide

From Version 1.0 to 2.0

  1. Set Environment Variables:
    export SLACK_WEBHOOK_URL="your-slack-webhook-url"
    export ALERT_EMAIL_TO="your-email@domain.com"
    # ... other variables
    
  2. Update Docker Compose: The docker-compose file has been updated to support environment variables. Make sure to set them before starting.

  3. Update Alert Labels: Ensure your Prometheus alerts use the correct labels:
    • severity: critical|warning|info
    • service: github-ai-search-backend (or your service name)
  4. Test Configuration:
    docker exec alertmanager amtool check-config /etc/alertmanager/alertmanager.yml
    

Breaking Changes