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.
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
Attributes
-
workspaces
arrayThe list of workspace details that are currently running tests in the account
Show/Hide Child Attributes-
id
integerThe
workspaceId
of the workspace -
name
stringThe name of the workspace
-
-
locations
objectThe location details for all the currently running tests in the account
Show/Hide Child Attributes-
location Id
objectThe utilization details of the
location Id
Show/Hide Child Attributes-
id
stringThe
location Id
currently running test(s) in the account -
name
stringThe name of the location currently running test(s) in the account
-
engines
integerThe number of engines running test(s) in the location for 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"
}