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
In my traces, the delimiter is set to null, leading to traces that look like resolvernullgetDatanullsomething.
How can I set the delimiter correctly? Right now I am using an ugly hack
// delimiter seems to be set to null explicitly by something 😬awaitimport('newrelic').then((m)=>m.default||m)// eslint-disable-next-line @typescript-eslint/no-explicit-any.then(({ shim }: any)=>{if(shim?.agent){if(!shim.agent.tracer.getTransaction().nameState.delimiter){shim.agent.tracer.getTransaction().nameState.delimiter='/';}}});
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
-
In my traces, the delimiter is set to
null
, leading to traces that look likeresolvernullgetDatanullsomething
.How can I set the delimiter correctly? Right now I am using an ugly hack
Beta Was this translation helpful? Give feedback.
All reactions