probe SLO

list_burn_alerts

List all burn alerts for a SLO

Run it now
View details
Typeprobe
Modulechaoshoneycomb.slo.probes
Namelist_burn_alerts
Returnlist

Usage

JSON

{
  "name": "list-burn-alerts",
  "type": "probe",
  "provider": {
    "type": "python",
    "module": "chaoshoneycomb.slo.probes",
    "func": "list_burn_alerts",
    "arguments": {
      "dataset_slug": "",
      "slo_id": ""
    }
  }
}

YAML

name: list-burn-alerts
provider:
  arguments:
    dataset_slug: ''
    slo_id: ''
  func: list_burn_alerts
  module: chaoshoneycomb.slo.probes
  type: python
type: probe

Arguments

NameTypeDefaultRequiredTitleDescription
dataset_slugstringYesDatasetDataset slug
slo_idstringYesSLO Identifier

Signature

def list_burn_alerts(
        dataset_slug: str,
        slo_id: str,
        configuration: Dict[str, Dict[str, str]] = None,
        secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
    pass