honeycomb-mcp-server

by kajirita2002
Verified

honeycomb_slo_create

Create a new SLO for a dataset

Input Schema

NameRequiredDescriptionDefault
datasetSlugYesDataset slug to create SLO for, or 'all' for all datasets
descriptionNoDescription of the SLO
nameYesName of the SLO
objectiveNoObjective configuration with target and time window
sliNoService Level Indicator configuration
time_periodNoTime 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" }