corefx-tools
corefx-tools copied to clipboard
Place to include various misc tools for .NET and .NET Core.
_From @jeremymeng on June 5, 2018 22:35_ Currently users have to manually download and patch their Linux system before running perfcollect script. It involves multiple steps as described at https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/linux-performance-tracing.md#resolving-framework-symbols....
I'm trying to run perfcollect in a docker container following these instructions. https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/linux-performance-tracing.md When I run ./perfcollect collect sampletrace It immediately terminates with the following output. Collection started. Press CTRL+C...
Originally reported in https://github.com/dotnet/coreclr/issues/18452. From @paraspatidar: > FYI , apart from kubernetes , same behavior is observed on Ubuntu VM on azure. However on Ubuntu it happens only when we...
Some configurations result in the CPU attribute not being set on cpu-clock events. We get an explicit failure on calls to 'perf script' when this happens because we ask for...
_From @lbthanh on September 5, 2018 5:34_ perfcollect still not support to Amazon Linux distribution. https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/linux-performance-tracing.md I work around with RHEL repo but dependency didn't work. ` $ wget -P...
Hello, There was a PR in coreclr which changed the public API of crossgen tool (https://github.com/dotnet/coreclr/pull/23462). Instead of `/Trusted_Platform_Assemblies path[:path...]` it now uses `/r path [/r path...]`. We need to...
At the moment, there are no Linux distros support lttng related-packages for installation on Amazon Linux 2. The original site was taken. https://lttng.org/files/
This section of code copy all `.map` files from home directory `~/` to `/tmp` folder. ``` local mapFiles=`find -name *.map` for mapFile in $mapFiles do echo "Copying $mapFile to /tmp."...
namely the following: DotNETRuntime:GCJoin_V2 DotNETRuntime:PinObjectAtGCTime These can artificially increase the GC pause by potentially a lot (especially the pinobject one) there are other verbose level events like DotNETRuntime:FinalizeObject DotNETRuntime:IncreaseMemoryPressure DotNETRuntime:DecreaseMemoryPressure...
Are there any plans to support perfcollect on Mac OS? Attempting to install via `./perfcollect install` responds with > ERROR: Auto install unsupported for this distribution. Install perf manually to...