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
Prev Previous commit
Apply suggestions from code review
  • Loading branch information
adamsitnik authored Jan 9, 2023
commit 35290e677a5b741346de88383271d23f653b4aad
4 changes: 2 additions & 2 deletions docs/project/linux-performance-tracing.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,10 @@ To install dotnet symbol issue the command
dotnet tool install -g dotnet-symbol
```

To download symbols for all native libraries and store them next to them:
To download symbols for **all native libraries** (including .NET runtime/framework as well as any other installed frameworks like ASP.NET) and store them next to them:

```
sudo dotnet symbol --recurse-subdirectories --symbols '/usr/share/dotnet/lib*.so'
sudo dotnet symbol --recurse-subdirectories --symbols '/usr/share/dotnet/*.so'
```

## Collecting in a Docker Container ##
Expand Down