list_slos
Retrieve a list of Service Level Objectives (SLOs) for a specified dataset and environment, including names, descriptions, time periods, and success targets per million events.
Instructions
Lists available SLOs (Service Level Objectives) for a specific dataset. This tool returns a list of all SLOs available in the specified environment, including their names, descriptions, time periods, and target per million events expected to succeed. NOTE: all is NOT supported as a dataset name -- it is not possible to list all SLOs in an environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dataset | Yes | The dataset to fetch SLOs from | |
environment | Yes | The Honeycomb environment |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"dataset": {
"description": "The dataset to fetch SLOs from",
"type": "string"
},
"environment": {
"description": "The Honeycomb environment",
"type": "string"
}
},
"required": [
"environment",
"dataset"
],
"type": "object"
}