Skip to content

Commit b4d46ee

Browse files
authored
Update running-profiling-tools-with-or-without-the-debugger.md
1 parent d8648ee commit b4d46ee

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/profiling/running-profiling-tools-with-or-without-the-debugger.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -90,20 +90,20 @@ To measure performance data from the command line, you can use VSDiagnostics.exe
9090
1. Open a command prompt, and change to the directory with VSDiagnostics.exe:
9191

9292
```
93-
<Visual Studio Install Folder>\Team Tools\DiagnosticsHub\Collector\
93+
**Visual Studio Install Folder**\Team Tools\DiagnosticsHub\Collector\
9494
```
9595

9696
2. Start VSDiagnostics.exe with the following command:
9797

9898
```
99-
VSDiagnostics.exe start <id> /launch:<appToLaunch> /loadConfig:<configFile>
99+
VSDiagnostics.exe start **id** /launch:**appToLaunch** /loadConfig:**configFile**
100100
```
101101

102102
You must include the following arguments:
103103

104-
- <id>: Identifies the collection session. The ID must be a number between 1-255.
105-
- <appToLaunch>: The executable file to launch and profile.
106-
- <configFile>: The configuration file for the collection agent you want to launch.
104+
- **id**: Identifies the collection session. The ID must be a number between 1-255.
105+
- **appToLaunch**: The executable file to launch and profile.
106+
- **configFile**: The configuration file for the collection agent you want to launch.
107107

108108
3. To stop collection and view your results, follow the steps in the "Stop collection" section later in this article.
109109

@@ -113,20 +113,20 @@ To measure performance data from the command line, you can use VSDiagnostics.exe
113113
2. Open a command prompt, and change to the directory with the collection agent executable. Typically, it's here:
114114

115115
```
116-
<Visual Studio installation folder>\2019\Preview\Team Tools\DiagnosticsHub\Collector\
116+
**Visual Studio installation folder**\2019\Preview\Team Tools\DiagnosticsHub\Collector\
117117
```
118118

119119
3. Start the VSDiagnostics.exe file by typing the following command.
120120

121121
```
122-
VSDiagnostics.exe start <id> /attach:<pid> /loadConfig:<configFile>
122+
VSDiagnostics.exe start **id** /attach:**pid** /loadConfig:**configFile**
123123
```
124124

125125
You must include the following arguments:
126126

127-
- <id>: Identifies the collection session. The ID must be a number between 1-255.
128-
- <pid>: The PID of the process you want to profile, which in this case is the PID you found in step 1.
129-
- <configFile>: The configuration file for the collection agent you want to launch. For more information, see [Configuration files for agents](../profiling/profile-apps-from-command-line.md).
127+
- **id**: Identifies the collection session. The ID must be a number between 1-255.
128+
- **pid**: The PID of the process you want to profile, which in this case is the PID you found in step 1.
129+
- **configFile**: The configuration file for the collection agent you want to launch. For more information, see [Configuration files for agents](../profiling/profile-apps-from-command-line.md).
130130

131131
4. To stop collection and view your results, follow the steps in the next section.
132132

0 commit comments

Comments
 (0)