Skip to content

Commit 3c83e3f

Browse files
committed
Added tabs to view results section
1 parent c9f37a1 commit 3c83e3f

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

articles/load-testing/tutorial-cicd-azure-pipelines.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,17 @@ The sample application repository already contains a sample workflow file *.gith
361361
362362
## View load test results
363363
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)
365375
366376
1. In your Azure DevOps project, select **Pipelines**, and then select your pipeline definition from the list.
367377
@@ -379,6 +389,24 @@ To view the results of the load test in the pipeline log:
379389
380390
:::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.":::
381391
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+
382410
## Define test pass/fail criteria
383411
384412
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

Comments
 (0)