Brian Robbins

Results 250 comments of Brian Robbins

Ah, sorry, I got stuck on the stuff up above. Collecting inside of a container is supported. I suspect that this has something to do with the configuration of the...

Agreed that this level of access may not be the best choice. However, perfcollect doesn't choose the configuration that perf requires. Instead, perfcollect is just showing the error from perf....

Doing a bit more investigation, I am able to capture a trace within a container by adding just `CAP_SYS_ADMIN`. I do get a warning that kernel symbols might not resolved...

Example issue: https://github.com/dotnet/coreclr/issues/18452

@adamsitnik `perfcollect` is harder to use with `EventSource` because `LTTng` doesn't allow for dynamic registration of tracepoints. Instead, all `EventSources` emit via a single tracepoint called `EventSource`. Then you can...

That's a goodo callout @MagicAndre1981. I've posted #2037 for this.

Right - you'll need a .NET Framework version that supports .netstandard2.0, which is .NET 4.6.1 or later.

Just looking through this PR, and I want to make sure that I understand the goal correctly. Is the goal here to keep the existing "known" dynamic events, but otherwise...

> Just for context, this work is inspired because we wanted additional diagnostics information for DATAS as in this PR. > > [dotnet/runtime#103405](https://github.com/dotnet/runtime/pull/103405) > > With that change, the runtime...