get_board
Retrieve detailed information about a specific dashboard from a Honeycomb environment, including ID, name, description, and timestamps. Ideal for accessing and analyzing board data directly.
Instructions
Retrieves a specific board (dashboard) from a Honeycomb environment. This tool returns a detailed object containing the board's ID, name, description, creation time, and last update time.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | The ID of the board to retrieve | |
environment | Yes | The Honeycomb environment |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"boardId": {
"description": "The ID of the board to retrieve",
"minLength": 1,
"type": "string"
},
"environment": {
"description": "The Honeycomb environment",
"minLength": 1,
"type": "string"
}
},
"required": [
"environment",
"boardId"
],
"type": "object"
}