How to: Attach the Profiler to a .NET Framework Stand-Alone Application to Collect Memory Data by Using the Command Line
This topic describes how to use Visual Studio Premium Profiling Tools command-line tools to attach the profiler to a running .NET Framework stand-alone (client) application and collect memory data.
Note
Command-line tools of the Profiling Tools are located in the \Team Tools\Performance Tools subdirectory of the Visual Studio installation directory. On 64-bit computers, both 64-bit and 32-bit versions of the tools are available. To use the profiler command-line tools, you must add the tools path to the PATH environment variable of the Command Prompt window or add it to the command itself. For more information, see Specifying the Path to Profiling Tools Command Line Tools.
To attach to a .NET Framework application and collect memory data, you must use the VSPerfCLREnv.cmd tool to initialize the appropriate environment variables before the target application starts. When the profiler is attached to the application, you can use the VSPerfCmd.exe tool to pause and resume data collection.
To end a profiling session, the profiler must be detached from all profiled processes and the profiler must be explicitly shut down. In most cases, we recommend clearing the profiling environment variables at the end of a session.
Attaching the Profiler
To attach the Profiler to a running .NET Framework application
Open a Command Prompt window.
Initialize the profiling environment variables. Type:
VSPerfClrEnv {/samplegc | /samplegclife} [/samplelineoff]
The /samplegc and /samplegclife options specify whether to collect only memory allocation data, or to collect both memory allocation and object lifetime data. One and only one option must be specified.
Option
Descriptions
/samplegc
Collect only memory allocation data.
/samplegclife
Collect both memory allocation and object lifetime data.
The /samplelineoff option disables the collection of source code line number data.
Start the profiler. Type:
**VSPerfCmd /start:sample /output:**OutputFile [Options]
The /start:sample option initializes the profiler.
The /output**:**OutputFile option is required with /start. OutputFile specifies the name and location of the profiling data (.vsp) file.
You can use any of the following options with the /start:sample option.
Option
Description
/user:[Domain\]UserName
Specifies the domain and user name of the account that owns the profiled process. This option is required only if the process is running as a user other than the logged-on user. The process owner is listed in the User Name column on the Processes tab of Windows Task Manager.
Enables profiling of processes in other sessions. This option is required if the application is running in a different session. The session idenitifer is listed in the Session ID column on the Processes tab of Windows Task Manager. /CS can be specified as an abbreviation for /crosssession.
/wincounter:WinCounterPath
Specifies a Windows performance counter to be collected during profiling.
/automark:Interval
Use with /wincounter only. Specifies the number of milliseconds between Windows performance counter collection events. Default is 500 ms.
If necessary, start the target application in the typical way.
Attach the profiler to the target application. Type:
VSPerfCmd /attach:{PID|ProcName} [/targetclr**:**Version]
PID specifies the process ID of the target application. ProcessName specifies the name of the process. Note that if you specify ProcessName and multiple processes that have the same name are running, results are unpredictable. You can view the process IDs of all running processes in Windows Task Manager.
**/targetclr:**Version specifies the version of the common language runtime (CLR) to profile when more than one version of the runtime is loaded in an application. Optional.
Controlling Data Collection
When the target application is running, you can control data collection by starting and stopping the writing of data to the file by using VSPerfCmd.exe options. Controlling data collection enables you to collect data for a specific part of program execution, such as starting or shutting down the application.
To start and stop data collection
The following pairs of options start and stop data collection. Specify each option on a separate command line. You can turn data collection on and off multiple times.
Option
Description
Starts (/globalon) or stops (/globaloff) data collection for all processes.
/processon:PID /processoff:PID
Starts (/processon) or stops (/processoff) data collection for the process that is specified by the PID.
/attach starts to collect data for the process that is specified by the PID or process name (ProcName). /detach stops data collection for the specified process or for all processes if a specific process is not specified.
You can also use the VSPerfCmd.exe /mark option to insert a profiling mark into the data file. The /mark command adds an identifier, a time stamp, and an optional user-defined text string. Marks can be used to filter the data.
Ending the Profiling Session
To end a profiling session, the profiler must be detached from all profiled processes and the profiler must be explicitly shut down. You can detach the profiler from an application that was profiled by using the sampling method by closing the application or by calling the VSPerfCmd /detach option. You then call the VSPerfCmd /shutdown option to turn off the profiler and close the profiling data file. The VSPerfClrEnv /off command clears the profiling environment variables.
To end a profiling session
Perform one of the following steps to detach the profiler from the target application:
Type VSPerfCmd /detach
-or-
Close the target application.
Shut down the profiler. Type:
VSPerfCmd /shutdown
(Optional) Clear the profiling environment variables. Type:
VSPerfCmd /off
See Also
Concepts
Command-Line Profiling of Stand-Alone Applications