Three built images on the cg network with config baked in: Tempo (OTLP ingest, ports 4317/4318), Prometheus, and Grafana with both datasources auto-provisioned. Config lives in infra/observability/. The verify-observability step runs early in CI verify-stack; the three containers are added to the failure log-dump list. Tempo's Grafana plugin has no datasource /health method, so the check proves Tempo reachability through Grafana's datasource proxy instead. refs #122
28 lines
677 B
YAML
28 lines
677 B
YAML
# Grafana Tempo — single-binary, all-in-one, local storage (S-16a, ADR-0023).
|
|
# Ingests OTLP directly (services export straight to Tempo; no collector hop).
|
|
# Storage is ephemeral container fs — this is a local/CI demo backplane, not a
|
|
# retention target. ponytail: local backend, swap for object storage if traces
|
|
# must outlive the stack.
|
|
server:
|
|
http_listen_port: 3200
|
|
|
|
distributor:
|
|
receivers:
|
|
otlp:
|
|
protocols:
|
|
grpc:
|
|
endpoint: 0.0.0.0:4317
|
|
http:
|
|
endpoint: 0.0.0.0:4318
|
|
|
|
ingester:
|
|
max_block_duration: 5m
|
|
|
|
storage:
|
|
trace:
|
|
backend: local
|
|
local:
|
|
path: /var/tempo/blocks
|
|
wal:
|
|
path: /var/tempo/wal
|