You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/load-testing/tutorial-cicd-azure-pipelines.md
+29-1Lines changed: 29 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -361,7 +361,17 @@ The sample application repository already contains a sample workflow file *.gith
361
361
362
362
## View load test results
363
363
364
-
To view the results of the load test in the pipeline log:
364
+
Azure Load Testing enables you to view the results of the load test run directly in the CI/CD workflow output. The CI/CD log contains the following client-side metrics:
365
+
366
+
- Response time metrics: average, minimum, median, maximum, and 90-95-99 percentiles.
367
+
- Number of requests per second.
368
+
- Total number of requests.
369
+
- Total number of errors.
370
+
- Error rate.
371
+
372
+
In addition, the [load test results file](./how-to-export-test-results.md) is available as a workflow run artifact, which you can download for additional reporting.
373
+
374
+
# [Azure Pipelines](#tab/pipelines)
365
375
366
376
1. In your Azure DevOps project, select **Pipelines**, and then select your pipeline definition from the list.
367
377
@@ -379,6 +389,24 @@ To view the results of the load test in the pipeline log:
379
389
380
390
:::image type="content" source="./media/tutorial-cicd-azure-pipelines/create-pipeline-download-results.png" alt-text="Screenshot that shows how to download the load test results.":::
381
391
392
+
# [GitHub Actions](#tab/github)
393
+
394
+
1. Select the **Actions** tab in your GitHub repository to view the list of workflow runs.
395
+
396
+
:::image type="content" source="./media/tutorial-cicd-github-actions/workflow-run-list.png" alt-text="Screenshot that shows the list of GitHub Actions workflow runs.":::
397
+
398
+
1. Select the workflow run from the list to open the run details and logging information.
399
+
400
+
:::image type="content" source="./media/tutorial-cicd-github-actions/github-actions-workflow-completed.png" alt-text="Screenshot that shows the workflow logging information.":::
401
+
402
+
After the load test finishes, you can view the test summary information and the client-side metrics in the workflow log. The log also shows the steps to go to the Azure Load Testing dashboard for this load test.
403
+
404
+
1. On the screen that shows the workflow run's details, select the **loadTestResults** artifact to download the result files for the load test.
405
+
406
+
:::image type="content" source="./media/tutorial-cicd-github-actions/github-actions-artifacts.png" alt-text="Screenshot that shows artifacts of the workflow run.":::
407
+
408
+
---
409
+
382
410
## Define test pass/fail criteria
383
411
384
412
In this section, you'll add criteria to determine whether your load test passes or fails. If at least one of the pass/fail criteria evaluates to `true`, the load test is unsuccessful.
0 commit comments