Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Synopsis
- inMemoryChannelExporter :: MonadIO m => m (SpanProcessor, OutChan ImmutableSpan)
- inMemoryListExporter :: MonadIO m => m (SpanProcessor, IORef [ImmutableSpan])
- module Control.Concurrent.Chan.Unagi
Documentation
inMemoryChannelExporter :: MonadIO m => m (SpanProcessor, 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 (SpanProcessor, 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.