Modules
Deploys module
Track every deployment across environments with health checks and rollback metadata.
Deploys module
The deploys module records every deployment event โ when, where, what version, and whether it succeeded. It pairs naturally with CI pipelines and feature-flag systems.
Event shape
{
"type": "deploy",
"ts": "2026-04-27T13:00:00Z",
"data": {
"service": "api",
"version": "v1.4.2",
"environment": "production",
"status": "succeeded",
"commit": "ab12cd34",
"duration": 87
}
}
Integrations
Built-in plugins exist for GitHub Actions, GitLab CI, CircleCI, and Buildkite. Each emits the deploy event automatically when your pipeline reaches the deploy step.