Mprove
run

Run dashboards, charts, and reports queries. Returns query statuses and statistics.

Request Body

application/json

Response Body

application/json

Input

{
  "projectId": "string",
  "repoId": "string",
  "branchId": "string",
  "envId": "string",
  "concurrency": 0,
  "wait": true,
  "sleep": 0,
  "dashboardIds": "string",
  "chartIds": "string",
  "noDashboards": true,
  "noCharts": true,
  "getDashboards": true,
  "getCharts": true,
  "reportIds": "string",
  "noReports": true,
  "getReports": true
}

Output

{
  "charts": [
    {
      "title": "string",
      "chartId": "string",
      "url": "string",
      "query": {
        "queryId": "string",
        "status": "New",
        "lastErrorMessage": "string"
      }
    }
  ],
  "dashboards": [
    {
      "title": "string",
      "dashboardId": "string",
      "url": "string",
      "tiles": [
        {
          "title": "string",
          "query": {}
        }
      ]
    }
  ],
  "reports": [
    {
      "title": "string",
      "reportId": "string",
      "url": "string",
      "rows": [
        {
          "title": "string",
          "query": {}
        }
      ]
    }
  ],
  "errorCharts": [
    {}
  ],
  "errorDashboards": [
    {}
  ],
  "errorReports": [
    {}
  ],
  "queriesStats": {
    "started": 0,
    "running": 0,
    "completed": 0,
    "error": 0,
    "canceled": 0
  }
}

On this page