Implement metrics and traces surfaces (currently stubbed) #4
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally filed by @coilysiren on 2026-04-24T12:38:05Z - https://github.com/coilysiren/eco-telemetry/issues/2
Both the metrics and traces surfaces are currently stubbed no-ops. V1 exception/log capture works; the remaining roadmap items are the OTel metric emitter and the trace-span wrapper.
Metrics (`src/MetricsWorker.cs:34-38`)
Currently a 5-minute sleep loop with no emission. Wire OTel gauges/counters for:
GC/threadpool metrics come free via `OpenTelemetry.Instrumentation.Runtime`; confirm the package is registered.
Traces (`src/TraceSurface.cs:18-21`)
`ActivitySource` is created but nothing starts spans. Candidate integrations:
Verification
Out of scope