honeycomb_slo_update
Modifies an existing Service Level Objective (SLO) on the honeycomb-mcp-server, allowing updates to name, description, SLI, objective, and time period configurations for specified datasets.
Instructions
Update an existing SLO
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datasetSlug | Yes | Dataset slug the SLO belongs to, or 'all' | |
description | No | New description for the SLO | |
name | No | New name for the SLO | |
objective | No | New objective configuration | |
sli | No | New Service Level Indicator configuration | |
sloId | Yes | SLO ID to update | |
time_period | No | New time period configuration |
Input Schema (JSON Schema)
{
"properties": {
"datasetSlug": {
"description": "Dataset slug the SLO belongs to, or 'all'",
"type": "string"
},
"description": {
"description": "New description for the SLO",
"type": "string"
},
"name": {
"description": "New name for the SLO",
"type": "string"
},
"objective": {
"description": "New objective configuration",
"type": "object"
},
"sli": {
"description": "New Service Level Indicator configuration",
"type": "object"
},
"sloId": {
"description": "SLO ID to update",
"type": "string"
},
"time_period": {
"description": "New time period configuration",
"type": "object"
}
},
"required": [
"datasetSlug",
"sloId"
],
"type": "object"
}