Browser Performance Testing

Introduced in GitLab Enterprise Edition Premium 10.3.

Overview

If your application offers a web interface and you are using GitLab CI/CD, you can quickly determine the performance impact of pending code changes. GitLab uses Sitespeed.io, a free and open source tool for measuring the performance of web sites, to analyze the performance of specific pages.

GitLab runs the Sitespeed.io container and compares the performance scores for each page between the source and target branches of a merge request. The Sitespeed.io performance score is a composite value based on best practices, and we will be expanding support for additional metrics in a subsequent release.

The difference for each page is then shown right on the merge request:

Performance Widget

Use cases

For instance, consider the following workflow:

  1. A member of the marketing team is attempting to track engagement by adding a new tool
  2. With browser performance metrics, they see how their changes are impacting the usability of the page for end users
  3. The metrics show that after their changes the performance score of the page has gone down
  4. When looking at the detailed report, they see that the new Javascript library was included in <head> which affects loading page speed
  5. They ask a front end developer to help them, who sets the library to load asynchronously
  6. The frontend developer approves the merge request and authorizes its deployment to production

How it works

In order to easily consume the Sitespeed results across multiple pages, GitLab has built a simple Sitespeed plugin which outputs performance.json. This plugin outputs the performance score for each page that is analyzed. Additional metrics are planned to be supported in a future release.

In order for the report to show in the merge request, you need to specify a performance job (exact name) that will analyze the code and upload the resulting performance.json as an artifact. GitLab will then check this file and show the information inside the merge request.

Presently performance.json needs to be the only artifact file for the job. We are working on adding support to be able to include other artifact files, like the broader HTML report, in a subsequent release.

If the performance report doesn't have anything to compare to, no information will be displayed in the merge request area. That is the case when you add the performance job in your .gitlab-ci.yml for the very first time. Consecutive merge requests will have something to compare to and the performance report will be shown properly.

For more information on how the performance job should look, check the example on analyzing a project's performance with Sitespeed.io.