GitHub Action
Honeycomb Buildevents
This GitHub Action instruments your workflows using Honeycomb's buildevents tool. It populates the trace with metadata from the GitHub Actions environment and will always send a trace for the build, even if the build failed.
gha-buildevents
has to be added to every job that should be instrumented. Every job will create a separate trace.
- this action only works on Linux hosts (though technically support could be added for other platforms)
- if downloading or executing buildevents fails, the entire job will fail
Put the action at the start of each job:
- uses: kvrhdn/gha-buildevents@v1
with:
# Required: a Honeycomb API key - needed to send traces.
apikey: ${{ secrets.BUILDEVENTS_APIKEY }}
# Required: the Honeycomb dataset to send traces to.
dataset: gha-buildevents_integration
# Required: the job status, this will be used in the post section and sent
# as status of the trace. Must always be ${{ job.status }}.
job-status: ${{ job.status }}
# Optional: this should only be used in combination with matrix builds. Set
# this to a value uniquely describing each matrix configuration.
matrix-key: ${{ matrix.value }}
# ... the rest of your job ...
# gha-buildevents will automatically run as a post action and execute 'buildevents build'
gha-buildevents
is a wrapping action. This means it has a post section which will run at the end of the build, after all other steps. In this final step the trace is finalized using buildevents build
. Since this step runs always, even if the job failed, you don't have to worry about traces not being sent.
Name | Required | Description | Type |
---|---|---|---|
apikey |
yes | API key used to communicate with the Honeycomb API. | string |
dataset |
yes | Honeycomb dataset to use. | string |
job-status |
yes | The job status, must be set to ${{ job.status }} . |
string |
matrix-key |
no | Set this to a key unique for this matrix cell. | string |
Additionally, the following environment variable will be read:
BUILDEVENT_FILE
: the path to a file containing additional key-value pairs. Data in this file will be attached to every span sent by buildevents. If this environment variable is not set, gha-buildevents
will set this to a location outside the working directory.
When setting this environment variable, is recommended to set this at the beginning of the workflow.
No outputs are set, but the following environment variables are set:
TRACE_ID
: the trace ID is a combination of the repository, the workflow, the job name, the run number, optionally a matrix key and a random string. This trace ID will be unique across re-runs of the workflow. The format:
<owner>/<repo>-<workflow>-<job>-<run number>-<random number>
For example: kvrhdn/gha-buildevents-Integration-smoke-test-20144-1738717406
.
This repository has its own workflow which will run every hour. See .github/workflows/integration.yaml.
This workflow will create the following trace in Honeycomb:
To add additional fields to the events sent to Honeycomb, edit the file at the environment variable BUILDEVENT_FILE
. This file follows the logfmt style.
The BUILDEVENT_FILE
environment variable should not be changed during the run, instead it is recommended to configure it at the top-level of your workflow:
env:
BUILDEVENT_FILE: '../buildevents.txt'
After gha-buildevents
has run, buildevents
will be available on the path. You can use the buildevents
executable to add additional spans.
gha-buildevents
sets an environment variable TRACE_ID
. The trace ID should be used with all buildevents commands to ensure the trace is continued.
To learn more about buildevents and how to use it, checkout [honeycombio/buildevents][buildevents].
# Record the start of the step and, for convenience, set the step ID that will
# be used for all commands.
- run: |
echo ::set-env name=STEP_ID::0
echo ::set-env name=STEP_START::$(date +%s)
# Wrap the commands that should be traced with 'buildevents cmd'
- run: |
buildevents cmd $TRACE_ID $STEP_ID sleep-5 -- sleep 5
# Wrap up the step
- run: |
buildevents step $TRACE_ID $STEP_ID $STEP_START 'step 1'
This Action is distributed under the terms of the MIT license, see LICENSE for details.