Boards
Create a Board
Create a Board comprised of one or more Panels (Query, SLO, or Text). Note: Each board is limited to a maximum of 5 preset filters.
post/1/boards
Request body
Example request
{
"name": "My Board",
"description": "A board created via the API",
"links": {
"board_url": "https://ui.honeycomb.io/myteam/environments/myenvironment/board/2NeeaE9bBLd"
},
"id": "2NeeaE9bBLd",
"panels": [
{
"query_panel": {
"query_id": "abc1234e",
"query_annotation_id": "e4c24a35",
"dataset": "My Dataset",
"visualization_settings": {
"charts": [
{
"thresholds": [
{
"value": 100,
"label": "Critical",
"color": "red",
"operation": "gt",
"line_style": "filled-solid"
}
]
}
]
}
}
}
],
"tags": [
{
"key": "team",
"value": "blue"
}
],
"preset_filters": [
{
"column": "app.Service",
"alias": "Service"
}
]
}Response
Created
Example response
{
"name": "My Board",
"description": "A board created via the API",
"links": {
"board_url": "https://ui.honeycomb.io/myteam/environments/myenvironment/board/2NeeaE9bBLd"
},
"id": "2NeeaE9bBLd",
"panels": [
{
"query_panel": {
"query_id": "abc1234e",
"query_annotation_id": "e4c24a35",
"dataset": "My Dataset",
"visualization_settings": {
"charts": [
{
"thresholds": [
{
"value": 100,
"label": "Critical",
"color": "red",
"operation": "gt",
"line_style": "filled-solid"
}
]
}
]
}
}
}
],
"tags": [
{
"key": "team",
"value": "blue"
}
],
"preset_filters": [
{
"column": "app.Service",
"alias": "Service"
}
]
}