get_honeybadger_fault
Fetch and analyze a specific application error by fault ID directly from Honeybadger, enabling developers to troubleshoot issues efficiently within their development environment.
Instructions
Fetch a specific fault/error from Honeybadger by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fault_id | Yes | The ID of the fault to fetch | |
project_id | No | Optional project ID (uses env var if not provided) |
Input Schema (JSON Schema)
{
"properties": {
"fault_id": {
"description": "The ID of the fault to fetch",
"type": "string"
},
"project_id": {
"description": "Optional project ID (uses env var if not provided)",
"type": "string"
}
},
"required": [
"fault_id"
],
"type": "object"
}