Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Synopsis
- alterCarryOns :: MonadIO m => (HashMap Text Attribute -> HashMap Text Attribute) -> m ()
- withCarryOnProcessor :: SpanProcessor -> SpanProcessor
Documentation
withCarryOnProcessor :: SpanProcessor -> SpanProcessor Source #
"Carry ons" are extra attributes that are added to every span that is completed for within a thread's context. This helps us propagate attributes across a trace without having to manually add them to every span.
Be cautious about adding too many additional attributes via carry ons. The attributes are added to every span,
and will be discarded if the span has attributes that exceed the configured attribute limits for the configured
TracerProvider
.