Skip to content

deploy

View Markdown

A code deploy reported to Honeybadger. Each deploy creates one event per environment. There is no separate started or finished event.

Category Deploys Fields 6 honeybadger

Fields

6
FieldTypeDescription
event_typestringAllowed value: deploy.
environmentstringTarget environment of the deploy, e.g. "production", "staging".
revisionstringSource revision (commit SHA) being deployed.
repositorystringRepository URL, when reported.
local_usernamestringUsername on the deploying machine.
commitsarray<object>Commits included in this deploy when reported. Omitted on deploys without a commit list.

Example

{
"event_type": "deploy",
"environment": "production",
"revision": "a3f8c12d9b4e6f7a8c01d2e3f4a5b6c7d8e9f0a1",
"repository": "https://github.com/example/myapp",
"local_username": "deploy",
"commits": [
{
"revision": "a3f8c12d9b4e6f7a8c01d2e3f4a5b6c7d8e9f0a1",
"message": "Fix checkout total calculation",
"author": "Jane Developer"
}
]
}