Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/core/diagnostics/debug-memory-leak.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,14 @@
4807 DiagnosticScena /home/user/git/samples/core/diagnostics/DiagnosticScenarios/bin/Debug/netcoreapp3.0/DiagnosticScenarios
```


Check failure on line 59 in docs/core/diagnostics/debug-memory-leak.md

View workflow job for this annotation

GitHub Actions / lint

Multiple consecutive blank lines

docs/core/diagnostics/debug-memory-leak.md:59 MD012/no-multiple-blanks Multiple consecutive blank lines [Expected: 1; Actual: 2] https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md012.md
> [!NOTE]
> If the above command does not work, or is not found, you likely need to install the `dotnet-counters` tool first, with the following command.

Check failure on line 61 in docs/core/diagnostics/debug-memory-leak.md

View workflow job for this annotation

GitHub Actions / lint

Trailing spaces

docs/core/diagnostics/debug-memory-leak.md:61:144 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1] https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md009.md
```console
dotnet tool install --global dotnet-counters
```

Now, check managed memory usage with the [dotnet-counters](dotnet-counters.md) tool. The `--refresh-interval` specifies the number of seconds between refreshes:

```console
Expand Down
Loading