hs-opentelemetry-exporter-in-memory-0.0.1.3
Safe HaskellSafe-Inferred
LanguageHaskell2010

OpenTelemetry.Exporter.InMemory

Synopsis

Documentation

inMemoryChannelExporter :: MonadIO m => m (Processor, OutChan ImmutableSpan) Source #

Access exported spans via a concurrently accessible channel that produces spans. The spans are exported in the order that the spans end.

inMemoryListExporter :: MonadIO m => m (Processor, IORef [ImmutableSpan]) Source #

Access exported spans via a mutable reference to a list of spans. The spans are not guaranteed to be exported in a particular order.