get_trigger
Retrieve detailed trigger information including ID, name, description, threshold, and status from the Honeycomb environment using a specific trigger ID and dataset.
Instructions
Retrieves a specific trigger (alert) by ID with detailed information. This tool returns a detailed object containing the trigger's ID, name, description, threshold, frequency, alert type, triggered status, disabled status, recipients, evaluation schedule type, and timestamps.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dataset | Yes | The dataset containing the trigger | |
environment | Yes | The Honeycomb environment | |
triggerId | Yes | The ID of the trigger to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"dataset": {
"description": "The dataset containing the trigger",
"type": "string"
},
"environment": {
"description": "The Honeycomb environment",
"type": "string"
},
"triggerId": {
"description": "The ID of the trigger to retrieve",
"type": "string"
}
},
"required": [
"environment",
"dataset",
"triggerId"
],
"type": "object"
}