PerfView not showing values in 'Exc' columns as expected? #1567
Unanswered
kiranongithub
asked this question in
Q&A
Replies: 1 comment
-
@kiranongithub, if you scroll to the very top of the view, you should see that there are going to be one or two nodes that have non-zero exclusive time. This is because one of these two nodes are always at the top of the stack. The nodes represent unmanaged code time, and CPU time. If you want to have the time attributed to the functions themselves, you can choose these nodes, and fold them (right click and select Folding --> Fold item). This should give you what you're looking for. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am just trying to understand PerfView basics.
Question: I was expecting PerfView to show data in all of he "Exc" columns for the
FindPrimeNumber
method since this method does not call any other method. But I see0
in all theseExc
columns. Why is that?I have the following class in a .NET Core 6 application:
I did a
dotnet-trace
of this app in a docker container (fyi, I did NOT set any COMPlus environments variables..was not sure if that is required). Following is a snapshot of the trace.Beta Was this translation helpful? Give feedback.
All reactions