honeycomb_slo_get
Retrieve detailed information about a specific Service Level Objective (SLO) from a dataset using the dataset slug and SLO ID.
Instructions
Get information about a specific SLO
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasetSlug | Yes | Dataset slug the SLO belongs to, or 'all' | |
sloId | Yes | SLO ID to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"datasetSlug": {
"description": "Dataset slug the SLO belongs to, or 'all'",
"type": "string"
},
"sloId": {
"description": "SLO ID to retrieve",
"type": "string"
}
},
"required": [
"datasetSlug",
"sloId"
],
"type": "object"
}