Поделиться через


Запросы для таблицы AzureLoadTestingOperation

Для получения информации о использовании этих запросов в портале Azure, см. учебник по Log Analytics. For the REST API, see Query.

Количество создания нагрузочных тестов Azure

Подсчитывает количество созданных тестов по идентификатору ресурса.

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