Queries for the AzureLoadTestingOperation table

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