1. Tag once, inherit everywhere
When you add atags
dictionary to the first span you create, every child span automatically gets the same tags. That means you set them once and they flow down the entire call-stack.
2. Tag a single span
If you want to tag only a single span (or override a tag inherited from a parent) simply provide thetags
argument on that specific decorator or context manager.