get_panel_data
Retrieve dashboard panel data within a custom dashboard, including metrics, time series, or aggregated values, using project, dashboard, and panel IDs.
Instructions
Get data for a specific dashboard panel.
Retrieves the data that powers a specific panel in a custom dashboard, including metrics, time series data, or aggregated values.
Args: project_id: The project ID dashboard_id: The dashboard ID panel_id: The panel ID within the dashboard from_time: Optional start time (ISO format or relative like '-1h') to_time: Optional end time (ISO format or 'now')
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dashboard_id | Yes | ||
from_time | No | ||
panel_id | Yes | ||
project_id | Yes | ||
to_time | No |
Input Schema (JSON Schema)
{
"properties": {
"dashboard_id": {
"title": "Dashboard Id",
"type": "string"
},
"from_time": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "From Time"
},
"panel_id": {
"title": "Panel Id",
"type": "string"
},
"project_id": {
"title": "Project Id",
"type": "string"
},
"to_time": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "To Time"
}
},
"required": [
"project_id",
"dashboard_id",
"panel_id"
],
"type": "object"
}