Skip to content

Commit 13e3dae

Browse files
authored
Update profile-apps-from-command-line.md
fixing pathways and links
1 parent 7732c59 commit 13e3dae

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

docs/profiling/profile-apps-from-command-line.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ In the example described in this article, you collect performance information fo
2828

2929
* Familiarity with command-line tools
3030

31+
* To collect performance information on a remote machine without Visual Studio installed, install the [Performance Tools for Visual Studio](https://visualstudio.microsoft.com/downloads#remote-tools-for-visual-studio-2019) on the remote machine. The version of the tools must match your version of Visual Studio.
32+
3133
## Collect performance data
3234

3335
Profiling using the Visual Studio Diagnostics CLI tools works by attaching the profiling tool, along with one of the collector agents, to a process. When you attach the profiling tool, you begin a diagnostic session that captures and stores profiling data until the tool is stopped, at which point that data is exported into a *.diagsession* file. Then you can open this file in Visual Studio to analyze results.
@@ -66,7 +68,16 @@ Collection Agents are interchangeable components that collect different types of
6668

6769
For convenience, you can store that information in an agent configuration file. The configuration file is a *.json* file that contains at minimum the name of the *.dll* and its COM CLSID. Here are the example configuration files that you can find in the following folder:
6870

69-
```<Visual Studio installation folder>\2019\Preview\Team Tools\DiagnosticsHub\Collector\AgentConfigs\```
71+
```<Visual Studio installation folder>Team Tools\DiagnosticsHub\Collector\AgentConfigs\```
72+
73+
Please see the following links to agent configuration files:
74+
- https://aka.ms/vs/diaghub/agentconfig/cpubase
75+
- https://aka.ms/vs/diaghub/agentconfig/cpuhigh
76+
- https://aka.ms/vs/diaghub/agentconfig/cpulow
77+
- https://aka.ms/vs/diaghub/agentconfig/database
78+
- https://aka.ms/vs/diaghub/agentconfig/dotnetasyncbase
79+
- https://aka.ms/vs/diaghub/agentconfig/dotnetallocbase
80+
- https://aka.ms/vs/diaghub/agentconfig/dotnetalloclow
7081

7182
* CpuUsage configurations (Base/High/Low), which corresponds to data collected for the [CPU Usage](../profiling/cpu-usage.md) profiling tool.
7283
* DotNetObjectAlloc configurations (Base/Low), which corresponds to data collected for the [.NET Object Allocation tool](https://devblogs.microsoft.com/visualstudio/visual-studio-2017-version-15-8-preview-3/#tooling).

0 commit comments

Comments
 (0)