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
Sentry's new span schema is aligning with OTel, introducing `name` as
the top level field by which a span's operation is identified. This
effectively replaces `op` in Sentry's current data model.
Add `span.name` as a secondary alias for the underlying `sentry.op`
field.
I considered trying to put this field behind a feature flag, but the
blast radius is pretty large since this field is currently a constant
that is transformed into several other constants, all of which would
have to become dynamic. Adding it as a secondary alias means it
shouldn't yet show up anywhere unless a user explicity tries to use it.
We might start conditionally using it in the frontend behind a feature
flag.
Eventually, `span.op` will become the secondary alias, for backwards
compatibility.
0 commit comments