honeycomb · Schema

BurnAlertCreateRequest

Properties

Name Type Description
slo_id string The ID of the SLO to monitor.
alert_type string
exhaustion_minutes integer
budget_rate_window_minutes integer
budget_rate_decrease_percent number
recipients array
View JSON Schema on GitHub

JSON Schema

honeycomb-burnalertcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BurnAlertCreateRequest",
  "title": "BurnAlertCreateRequest",
  "type": "object",
  "required": [
    "slo_id",
    "alert_type",
    "recipients"
  ],
  "properties": {
    "slo_id": {
      "type": "string",
      "description": "The ID of the SLO to monitor."
    },
    "alert_type": {
      "type": "string",
      "enum": [
        "budget_rate",
        "exhaustion_time"
      ]
    },
    "exhaustion_minutes": {
      "type": "integer"
    },
    "budget_rate_window_minutes": {
      "type": "integer"
    },
    "budget_rate_decrease_percent": {
      "type": "number"
    },
    "recipients": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RecipientRef"
      }
    }
  }
}