---
title: Deploys module
description: Track every deployment across environments with health checks and rollback metadata.
section: Modules
order: 3
updatedAt: 2026-04-27
slug: modules/deploys
---
# 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

```json
{
  "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.