Skip to main content

CI/CD Pipelines

Route: /platform/pipelines · Edition: Pro+ · Beta

The Pipelines view gives a consolidated view of CI/CD pipeline runs across all services, with success/failure stats and per-run detail.

CI/CD Pipelines

Pipeline run fields

FieldDescription
ServiceThe service this pipeline belongs to
BranchGit branch that triggered the run
StatusSuccess / Failed / Running / Cancelled
DurationHow long the run took
Triggered atTimestamp
CommitShort SHA and message

Stats

The stats panel shows:

  • Total runs in the selected period
  • Success rate
  • Average duration
  • Most frequently failing service

Adding a run (API)

Pipeline runs are typically posted by your CI system:

POST /api/pipelines
{
"service": "payments-api",
"branch": "main",
"status": "success",
"duration_seconds": 142,
"commit_sha": "abc1234",
"commit_message": "fix: handle nil pointer in charge handler"
}