Queries for the AzureLoadTestingOperation table

For information on using these queries in the Azure portal, see Log Analytics tutorial. For the REST API, see Query.

Azure load test creation count

Counts the number of tests creation by resource ID.

AzureLoadTestingOperation
| where OperationId == "Test_CreateOrUpdateTest"
| where HttpStatusCode == 201
| summarize count() by _ResourceId

Azure load test run creation count

Counts the number of successful test runs started by resource ID.

AzureLoadTestingOperation
| where OperationId == "TestRun_CreateAndUpdateTest"
| where HttpStatusCode == 200
| summarize count() by _ResourceId