honeycomb_slo_create
Create a new Service Level Objective (SLO) for a specific dataset or all datasets, defining objectives, SLIs, and time periods for monitoring and performance tracking.
Instructions
Create a new SLO for a dataset
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasetSlug | Yes | Dataset slug to create SLO for, or 'all' for all datasets | |
description | No | Description of the SLO | |
name | Yes | Name of the SLO | |
objective | No | Objective configuration with target and time window | |
sli | No | Service Level Indicator configuration | |
time_period | No | Time period configuration for the SLO |
Input Schema (JSON Schema)
{
"properties": {
"datasetSlug": {
"description": "Dataset slug to create SLO for, or 'all' for all datasets",
"type": "string"
},
"description": {
"description": "Description of the SLO",
"type": "string"
},
"name": {
"description": "Name of the SLO",
"type": "string"
},
"objective": {
"description": "Objective configuration with target and time window",
"type": "object"
},
"sli": {
"description": "Service Level Indicator configuration",
"type": "object"
},
"time_period": {
"description": "Time period configuration for the SLO",
"type": "object"
}
},
"required": [
"datasetSlug",
"name"
],
"type": "object"
}