{
  "monitoring_interval": 1.0,
  "alert_thresholds": {
    "critical": 90,
    "warning": 75
  },
  "log_retention_days": 30,
  "trajectory_tolerance": {
    "position": 100,
    "velocity": 1.0,
    "attitude": 0.1
  },
  "notification_channels": [
    {
      "type": "email",
      "priority": "high",
      "recipients": ["ops@mission.gov"]
    },
    {
      "type": "sms", 
      "priority": "critical",
      "recipients": ["+15551234567"]
    },
    {
      "type": "slack",
      "priority": "medium", 
      "channel": "#mission-control"
    }
  ],
  "escalation_rules": {
    "unacknowledged_alert": {
      "timeout": 300,
      "escalate_to": "senior_engineer"
    },
    "critical_failure": {
      "immediate": true,
      "notify": "all_channels"
    }
  }
}