Story 1.6: OpenTelemetry Distributed Tracing - Implemented tracer initialization with stdout (dev) and OTLP (prod) exporters - Added HTTP request instrumentation via Gin middleware - Integrated trace ID correlation in structured logs - Added tracing configuration to config files - Registered tracer provider in DI container Documentation and Setup: - Created Docker Compose setup for PostgreSQL database - Added comprehensive Epic 1 summary with verification instructions - Added Epic 0 summary with verification instructions - Linked summaries in documentation index and epic READMEs - Included detailed database testing instructions - Added Docker Compose commands and troubleshooting guide All Epic 1 stories (1.1-1.6) are now complete. Story 1.7 depends on Epic 2.
27 lines
408 B
YAML
27 lines
408 B
YAML
environment: development
|
|
|
|
server:
|
|
port: 8080
|
|
host: "0.0.0.0"
|
|
read_timeout: 30s
|
|
write_timeout: 30s
|
|
|
|
database:
|
|
driver: "postgres"
|
|
dsn: ""
|
|
max_connections: 25
|
|
max_idle_connections: 5
|
|
conn_max_lifetime: 5m
|
|
conn_max_idle_time: 10m
|
|
|
|
logging:
|
|
level: "info"
|
|
format: "json"
|
|
output: "stdout"
|
|
|
|
tracing:
|
|
enabled: true
|
|
service_name: "platform"
|
|
service_version: "1.0.0"
|
|
otlp_endpoint: ""
|