create_dashboard
Generate custom dashboards for infrastructure monitoring by configuring panels and queries tailored to specific project needs using the MCP Server for Coroot.
Instructions
Create a new custom dashboard.
Creates a dashboard with custom panels and queries for monitoring specific aspects of your infrastructure.
Args: project_id: Project ID dashboard: Dashboard configuration with panels and layout
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dashboard | Yes | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"dashboard": {
"additionalProperties": true,
"title": "Dashboard",
"type": "object"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id",
"dashboard"
],
"type": "object"
}