Release Tags and Run Annotations
What release tags are
A release tag is a short label, usually a version number like v2.3.1, attached to one run of a load test. Tagged runs stand out on the Trend tab charts, so when response times or error rates shift between runs you can see at a glance which release the change lines up with.
Each annotation has two parts:
- a Release tag: required, up to 64 characters
- a Link: optional, an
http://orhttps://URL, for example the release notes, the pull request, or the CI build
Release tags work for all three engines: cloud Load Testing, JMeter Load Testing and k6 Load Testing.
Tagging the run you are viewing
- Open a test result and switch to the Trend tab.
- Fill in the Release tag field (placeholder:
e.g. v2.3.1) and, if you want, the Link (optional) field. - Click Save. The status next to the button confirms with "Saved".
The form always annotates the run you are currently viewing. To tag an older run, open that run's result page first, then save the tag from its Trend tab.
To change a tag, edit the fields and save again. To remove it, clear the Release tag field and save; an empty tag deletes the annotation.
Tagging at launch from CI
When you start a test through the CI/CD API, pass releaseTag and optionally releaseUrl with the execute request. The new run is annotated from the moment it starts, with no manual step. This works on the execute endpoints of all three engines, so a deployment pipeline can stamp every performance run with the version it tested.
How tagged runs appear on the charts
The Trend tab plots three charts across your recent runs: P95 response time, Error rate and Throughput. On each chart:
- a run with a release tag is drawn as a larger diamond marker, while untagged runs are plain dots
- hovering a tagged run shows the tag in the tooltip, with "click to open" when a link was saved
- clicking a tagged point opens its link in a new tab
Marker colors keep their usual meaning from pass/fail thresholds; the diamond shape is what marks a release.
Sharing and permissions
Annotations are stored per team, so everyone on the team sees the same tags on the same runs. Team members with a view-only role can see tags but cannot save or delete them.
Typical workflow
- Your pipeline runs a load test on every deploy and passes
releaseTag=v2.3.1. - A week later the P95 trend jumps. On the Trend tab, the jump starts exactly at the
v2.4.0diamond. - Click the marker to open the release notes and find the change that caused it, then compare the two runs with a baseline comparison.