Better Stack

telemetry_create_dashboard_tool

Create a new dashboard. Optionally use a template to start with pre-configured charts. Call get_chart_building_instructions for guidance on dashboard structure and layout. Optionally specify a source_id to preconfigure the dashboard with that source. Returns the new dashboard ID which can be used with add_chart_to_dashboard to add charts

Remote betterstack

Other tools also called telemetry_create_dashboard_tool? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the new dashboard"
    },
    "team_id": {
      "type": "integer",
      "description": "The ID of the team to create the dashboard in (use list_teams to get team IDs)"
    },
    "source_id": {
      "type": "integer",
      "description": "Optional source ID to preconfigure dashboard with that source's metrics"
    },
    "template_id": {
      "type": "integer",
      "description": "Optional template ID to create dashboard from (use list_dashboard_templates to see available templates)"
    }
  }
}