You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetcore/blazor/performance/profiling.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -129,7 +129,7 @@ Invoke `{APP NAMESPACE}.Profiling.TakeHeapshot()` from your code in order to cre
129
129
[EventPipe](/dotnet/core/diagnostics/eventpipe) is a runtime component used to collect tracing data, similar to [ETW](/windows/win32/etw/event-tracing-portal) and [perf_events](https://wikipedia.org/wiki/Perf_%28Linux%29).
130
130
131
131
* Manual testing
132
-
* Browser developer tools: Download, open in Visual Studio, and find expected calls.
132
+
* Browser developer tools: Download the `.json` output file, open the file in Visual Studio, and find expected calls.
133
133
*[`dotnet-trace`](/dotnet/core/diagnostics/dotnet-trace): Open the `.nettrace` output file in Visual Studio and find the expected method calls.
134
134
* Web-based testing
135
135
* Use the JavaScript API to obtain a [promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise) of NetTrace (`.nettrace`) bytes.
@@ -145,7 +145,7 @@ Built-in performance counters are available to track:
145
145
## GC (Garbage Collector) dumps
146
146
147
147
* Manual testing
148
-
* Browser developer tools: Download, open in Visual Studio, and find the expected classes.
148
+
* Browser developer tools: Download the `.json` output file, open the file in Visual Studio, and find expected calls.
149
149
*[`dotnet-gcdump` (`collect`/convert` options)](/dotnet/core/diagnostics/dotnet-gcdump): To view the captured GC dump files, see [View the GC dump captured from dotnet-gcdump](/dotnet/core/diagnostics/dotnet-gcdump#view-the-gc-dump-captured-from-dotnet-gcdump).
150
150
* Web-based testing
151
151
* Use the JavaScript API to obtain a [promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise) of NetTrace (`.nettrace`) bytes.
@@ -155,7 +155,7 @@ Built-in performance counters are available to track:
155
155
## Counters trace
156
156
157
157
* Manual testing
158
-
* Browser developer tools: Download, open in Visual Studio, and find the expected counters/values.
158
+
* Browser developer tools: Download the `.json` output file, open the file in Visual Studio, and find expected calls.
159
159
*[`dotnet-counters collect`](/dotnet/core/diagnostics/dotnet-counters): Open the `.csv`/`.json` output file in Visual Studio and find the expected counters/values.
160
160
* Web-based testing
161
161
* Use the JavaScript API to obtain a [promise](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise) of NetTrace (`.nettrace`) bytes.
0 commit comments