perfview
perfview copied to clipboard
PerfView is a CPU and memory performance-analysis tool
Often I come across CPU stacks which do not fit on my laptop monitor making it hard to read full name on the Call Tree. Please implement horizontal scrolling ability...
I've noticed that there is a UserCommand called `NetperfToSpeedScope` however giving that method a provided etl file, as it is stated in its comments results in an error due to...
This seems like a bug where despite adding the ``/ClrEventLevel:Verbose`` to collect a trace with all CLR Verbose events via perfview using a command such as: ```PerfView start /AcceptEULA /NoGUI...
This is important when comparing PerfView logs with network traces or other logs and trying to line them up.
Similar to this article https://docs.microsoft.com/en-us/dotnet/framework/network-programming/how-to-configure-network-tracing
Resolves #1688 Adds a UserCommand to convert etl files to .speedscope.json for data parsing. Added some parameters to filter the data down as well that are also used for other...
TraceLog allows users to iterate through and filter events, rather than subscribing to them via "push". However, there is no way to consume custom event types or use custom parsers...
Trivial fix. The presence of per heap history events is detected by comparing PerHeapHistories with `null`, but this property is never `null`, since the list is allocated in the constructor....
I'm trying to make changes to enable `TraceLog` use without creating an ETLX file from an EventPipe (nettrace). I've taken the existing ETW streaming support as a baseline and tried...
From #1985.