Files
git.stella-ops.org/docs/doctor/articles/servicegraph/servicegraph-endpoints.md
2026-03-31 23:26:24 +03:00

2.0 KiB

checkId, plugin, severity, tags
checkId plugin severity tags
check.servicegraph.endpoints stellaops.doctor.servicegraph fail
servicegraph
services
endpoints
connectivity

Service Endpoints

What It Checks

Collects configured service URLs for Authority, Scanner, Concelier, Excititor, Attestor, VexLens, and Gateway, appends /health, and probes each endpoint.

The check fails when any configured endpoint is unreachable or returns a non-success status. If no endpoints are configured, the check is skipped.

Why It Matters

Stella Ops is a multi-service platform. A single broken internal endpoint can stall release orchestration, evidence generation, or advisory workflows even when the main web process is alive.

Common Causes

  • One or more StellaOps:*Url values are missing or point to the wrong internal service name
  • Internal DNS or network routing is broken
  • The target workload is up but not exposing /health

How to Fix

Docker Compose

Set the internal URLs explicitly:

StellaOps__AuthorityUrl: http://authority-web:8080
StellaOps__ScannerUrl: http://scanner-web:8080
StellaOps__GatewayUrl: http://web:8080

Probe each endpoint from the Doctor container:

docker compose -f devops/compose/docker-compose.stella-ops.yml exec doctor-web curl -fsS http://authority-web:8080/health
docker compose -f devops/compose/docker-compose.stella-ops.yml exec doctor-web curl -fsS http://scanner-web:8080/health

Bare Metal / systemd

Confirm the service-discovery or reverse-proxy names resolve from the Doctor host.

Kubernetes / Helm

Use cluster-local service DNS names and check that each workload exports a health endpoint through the same port the URL references.

Verification

stella doctor --check check.servicegraph.endpoints
  • check.servicegraph.backend - the backend is usually the first endpoint operators validate
  • check.servicegraph.mq - asynchronous workflows also depend on messaging, not only HTTP endpoints