Console

Services

Who ships what

A service names its repo, team and environment, and the versions it depends on. Without these edges the graph knows packages but not consequences.

Registered0
Production0
Environments0
Teams0
GET /services0 rows

querying…

By environment

No rows

By team

No rows

POST /services

Registration is a write, so the console does not do it for you. Run it from your deploy pipeline:

curl -X POST $CHAINTRACE_API/services \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "checkout-api",
    "repo": "acme/checkout-api",
    "team": "payments",
    "environment": "production",
    "dependencies": [
      { "name": "express", "version": "4.19.2" }
    ]
  }'
Response