Deploy markers
Markers are little icons used in graphs on AppSignal.com to indicate a change. This can be a code deploy using a "Deploy marker" or a special event with a "Custom marker". Deploy markers can also be found in the "Deploys" section in the app navigation which provides a performance overview per deploy.
A deploy marker indicates a change in the deployed version of an application. This can be used to group together occurrences of errors and performance issues within a certain time frame. From when the version was deployed until a newer version was deployed. Deploy markers are also required to enable backtrace links for an app.
When a new deploy is detected, the list of incidents is empty for the newest deployment version. When an error, or any other issue, is reported by AppSignal in your application it gets listed for the newest deploy as well. On the sample page for an incident you can see in which deployments an incident occurred with the help of the rocket (🚀) separator icon.
Deploy methods
There are two methods of notifying AppSignal of a new deploy. These two methods cannot be used together.
- Using the
revision
config option, and; - Creating a deploy notification manually with the AppSignal Push API.
The first method (revision
config option) is our recommended approach, because it's the most reliable method and works better for applications with more than one host. We detect the revision from the application itself so we know which instance is running what version.
The second approach (creating a deploy marker manually) is a method only really useful for small applications that use one host. It creates a new deploy marker at a specific time, regardless of the version the application is actually running. This also means it's also more error prone.
Revision config option
The recommended approach of letting AppSignal know a new version of your application is deployed is by using the revision
config option or the APP_REVISION
environment variable (see the deploy markers configuration guide for more information). This is automatically detected for Heroku apps using the dyno metadata lab feature.
This config option is set per instance of an application which has the benefit of every version of an application running at the same time reporting the errors under the correct deploy, rather than the latest deploy that has been reported to AppSignal.
For example: If one machine is still running an older version of the application all the errors from that instance are reported under the previous deploy marker rather than the last known deploy marker.
AppSignal will create a new deploy marker when it receives transaction data. When the revision config option is set for your app, the revision is stored on a transaction that tracks a web request / background job. When our processor on the AppSignal servers detects a new revision it will create a new deploy marker for the parent app with the revision from the transaction.
Config option
The revision
config option can be used in any integration to report the app's current deploy. See the deploy markers guide for more information.
If you're running a version in which this config option is not available we recommend using the APP_REVISION
environment variable instead.
System environment variable
The APP_REVISION
value can be any value you use to indicate a version/revision. For example: a version number 1.4.2
or a git SHA cf8bc42
.
The revision value should be set in the application's system environment and updated during a deploy of the application.
Heroku support
When using Heroku with the Heroku Labs: Dyno Metadata enabled, Heroku will populate the HEROKU_SLUG_COMMIT
environment variable with the SHA of the git commit being deployed.
AppSignal will automatically set the revision
config option to the value of the HEROKU_SLUG_COMMIT
system environment variable. This will automatically report new deploys when the Heroku app is deployed.
Render support
When deploying an application using Render, it will populate the RENDER_GIT_COMMIT
environment variable with the SHA of the git commit being deployed.
AppSignal will automatically set the revision
config option to the value of the RENDER_GIT_COMMIT
system environment variable. This will automatically report new deploys when the Render app is deployed.
Kamal support
When deploying an application using Kamal, it will populate the KAMAL_VERSION
environment variable within the container with the SHA of the git commit being deployed.
AppSignal will automatically set the revision
config option to the value of the KAMAL_VERSION
system environment variable. This will automatically report new deploys when the app is deployed using Kamal.
Docker support
If your application runs in a Docker container, follow the instructions below to set your application's revision and create a deploy marker.
First, add the following instructions to your Dockerfile, directly after the last FROM
instruction:
Once added you need to include your application's revision when building your docker image:
docker build --build-arg COMMIT=$(git rev-parse HEAD) -t image:latest
This will set the APP_REVISION
environment variable for your application and allow the AppSignal integration to use the revision as a deploy marker.
Manually create a deploy marker
This method of reporting new deploys to AppSignal requires that you send a POST request to the AppSignal Push API markers endpoint. This can be done with a (deprecated) CLI tool (for Ruby) or with a manual HTTP POST request for other languages. There is no CLI tool available for our other supported languages.
When the deploy marker create/notify request is received by the AppSignal servers, all data that is processed by our servers after that time is tracked under the newly created deploy.
To create a Deploy marker with a HTTP POST request you can use curl or some other tool like it. The payload of the request is a JSON object with data about the marker, such as the revision, user who deployed it and the application's repository.
Read more about how to create Deploy markers with our API in our API endpoint documentation.
Ruby CLI tool
The AppSignal for Ruby gem includes a (deprecated) CLI tool to allow creation of deploy markers from your app. See the notify_of_deploy
CLI command documentation for more information. A similar CLI tool is not available for other language integrations.