Brad Frost

Results 15 comments of Brad Frost

This makes a lot of sense in my opinion specifically for inlined dependencies. If the inlined dependency is not transpiled, this means the application needs to re-transpile a library built...

@dsherret that does indeed work — thank you! My use case/the reason this was an issue is the usage of [lint-staged](https://github.com/okonet/lint-staged). This passes the staged files individually to the command...

I am also seeing this behavior, with and without zone.js. Would it be possible to add a filter feature, or some way to collate event bubbling?

I looked into this more today and discovered some more information. Within `patchZoneRunTask`, it seems that the User Interaction Instrumentation is creating a new zone each time `_patchZoneRunTask()` is invoked....

> What do you mean the instrumentation is creating a new zone? Do you mean it is calling context.with or that it is actually interacting directly with zones? Or that...

I was actually able to get the above solution working with local modifications to the user interaction instrumentation, and am now seeing much more high quality span data. However, I...

@dyladan do you have a recommended platform for sharing a repro? I'm trying to use stackblitz, but I'm getting the error "Cannot find module perf_hooks". Looks like Stackblitz isn't recognizing...

@dyladan I was able to [get a reproducer using Stackblitz](https://stackblitz.com/edit/opentelemetry-js-template?devtoolsheight=33&file=src/app.ts). You will see that I am unable to group these click spans. In the first part, I create four document...

> Ah I see. So the issue is that a single click event fires multiple listeners and each of these listeners starts a span with no link between them or...

Yea I think we're on the same page 😄 One click creates one span. Instead of the current behavior where one click creates X number of spans, where X is...