Obtain an API token
Before sending events from , contact Chronosphere Support to obtain an API token to authenticate with Observability Platform.This API token differs from an API token that’s generated when you create
a service account.
Create a GitHub webhook
To send GitHub events to Observability Platform:- In GitHub, open the repository you want to configure a webhook for.
- Click Settings.
- Under Code and automation, click Webhooks.
-
In the Add webhook window, in the Payload URL field, enter:
- Select application/json as the Content type.
- In the Secret field, enter the API token you obtained from Chronosphere Support.
- Choose Let me select individual events, and then select Deployment and Deployment Status as the events to trigger the webhook.
- Save your webhook.
Map GitHub events to Observability Platform events
After creating a GitHub webhook to send events to Observability Platform, Observability Platform automatically maps the GitHub payload to change events. You can’t customize how the payload maps to change events. If you want to modify how the GitHub payload gets mapped, contact Chronosphere Support. The following table indicates the fields and values that Observability Platform produces from a GitHub webhook event:| Field | Value |
|---|---|
category | deploys |
type | deploy_ACTION |
source | github |
happened_at | TIMESTAMP |
title | TITLE |
ACTION: Fordeploymentevents, the type is alwaysdeploy_start. Fordeployment_statusevents, the type isdeploy_followed by the GitHub deployment status state, such asdeploy_in_progress,deploy_success, ordeploy_failure.TIMESTAMP: The time the event occurred, taken from the deployment’screated_atfield. Must be within seven days of the current time.TITLE: A description generated from the repository name and environment, such as “Deployment for my-repo in environment production started”.
| Label | Source | Event types |
|---|---|---|
environment | Deployment environment | deployment, deployment_status |
deployment.sha | Deployment commit SHA | deployment, deployment_status |
deployment.log_url | Deployment status log URL | deployment_status only |
shell variable PAYLOAD to a JSON string
that mimics a GitHub deployment webhook payload. The resulting $SIGNATURE is used
in the X-Hub-Signature: sha1=$SIGNATURE header of the following curl request. The
receiver validates authenticity by recomputing this same Hash-based Message
Authentication Code (HMAC) against the stored secret token and comparing it to the
header value, which is the same mechanism GitHub uses when delivering real webhooks.
deployment webhook. Replace
the following:
TENANT: Your organization name from your Observability Platform tenant.SECRET_TOKEN: The secret token configured in your GitHub webhook and registered with Observability Platform.
| Field | Value |
|---|---|
category | deploys |
type | deploy_start |
source | github |
title | Deployment for my-repo in environment staging started |
environment | staging |
deployment.sha | abc123def456 |

