Account Engine Utilization Report

API Explorer: /accounts/{accountId}/utilization-report

To the engine utilization report for your account, you need the accountId of the account to get the engine utilizataion report and use an API key that has account admin access. For the sample code on the right, a the engine utilizataion report for accountId 123456 is provided. To get the engine utilizataion report for your account, replace the accountId 123456 with the accountId of your account.

If you do not know the accountId of the account, use view the accountId glossary section for the details on where to find this value.

Account Engine Utilization Report

curl 'https://a.blazemeter.com/api/v4/accounts/123456/utilization-report' \
    --user 'api_key_id:api_key_secret'

Account Engine Utilization Report Response Attributes

All timestamps are in UNIX Epoch time.

Attributes

  • workspacesarray

    The list of workspace details that are currently running tests in the account

  • locationsobject

    The location details for all the currently running tests in the account

Response200 OK

{
  "api_version": 4,
  "error": null,
  "result": {
    "workspaces": [
      {
        "id": 123456,
        "name": "Default workspace"
      }
    ],
    "locations": {
      "us-west1-a": {
        "id": "us-west1-a",
        "name": "US West (Oregon, Google)",
        "engines": 1
      },
      "harbor-5b0323b3c648be3b4c7b23c8": {
        "id": "harbor-5b0323b3c648be3b4c7b23c8",
        "name": "Example Private Location",
        "engines": 1
      },
      "us-east1-b": {
        "id": "us-east1-b",
        "name": "US East (South Carolina, Google)",
        "engines": 1
      }
    }
  },
  "request_id": "5eeb989011d5f"
}