AzureLoadTestingOperation 數據表的查詢
如需在 Azure 入口網站 使用這些查詢的資訊,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢。
Azure 負載測試建立計數
計算依資源識別碼建立的測試數目。
AzureLoadTestingOperation
| where OperationId == "Test_CreateOrUpdateTest"
| where HttpStatusCode == 201
| summarize count() by _ResourceId
Azure 負載測試回合建立計數
計算資源識別碼啟動的成功測試回合數目。
AzureLoadTestingOperation
| where OperationId == "TestRun_CreateAndUpdateTest"
| where HttpStatusCode == 200
| summarize count() by _ResourceId