list_triggers
Retrieve detailed triggers and metadata for a specific dataset in a Honeycomb environment. This tool provides names, descriptions, thresholds, and additional details for all available alerts.
Instructions
Lists available triggers (alerts) for a specific dataset. This tool returns a list of all triggers available in the specified dataset, including their names, descriptions, thresholds, and other metadata. NOTE: all is NOT supported as a dataset name -- it is not possible to list all triggers in an environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dataset | Yes | The dataset to fetch triggers 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 triggers from",
"type": "string"
},
"environment": {
"description": "The Honeycomb environment",
"type": "string"
}
},
"required": [
"environment",
"dataset"
],
"type": "object"
}