You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're making heavy use of .NET's Activity API and its associated building blocks Tag and Baggage for distributd tracing.
Within several of our applications, we face the challenge that we want to pass information from a parent to a child activity (similar to a Baggage), but without passing them to external systems (similar to a Tag).
According to the docs (old and new), there seems to be no such concept, that's why we're manually propagating all Tags from parent to child like this:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello,
We're making heavy use of .NET's
Activity
API and its associated building blocksTag
andBaggage
for distributd tracing.Within several of our applications, we face the challenge that we want to pass information from a parent to a child activity (similar to a
Baggage
), but without passing them to external systems (similar to aTag
).According to the docs (old and new), there seems to be no such concept, that's why we're manually propagating all
Tag
s from parent to child like this:This works nicely, however, I'm wondering whether .NET itself wouldn't benefit from such a feature. What do you think?
Beta Was this translation helpful? Give feedback.
All reactions