Better Stack

telemetry_move_charts_tool

Move one or more charts to new positions on a dashboard. Validates the final layout for overlaps, allowing swaps and complex rearrangements. All moves are applied atomically - if any move is invalid, none are applied. Grid is 12 columns wide

Remote betterstack

Other tools also called telemetry_move_charts_tool? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "moves": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "chart_id",
          "x",
          "y"
        ],
        "properties": {
          "h": {
            "type": "integer",
            "description": "New height (optional)"
          },
          "w": {
            "type": "integer",
            "description": "New width (optional)"
          },
          "x": {
            "type": "integer",
            "description": "New X position (0-11)"
          },
          "y": {
            "type": "integer",
            "description": "New Y position"
          },
          "chart_id": {
            "type": "integer",
            "description": "Chart ID to move"
          }
        }
      },
      "description": "Array of chart moves"
    },
    "dashboard_id": {
      "type": "integer",
      "description": "The ID of the dashboard"
    }
  }
}