Performance Session Properties

A Performance Session enables the user to configure settings that determine how the application is profiled. It also stores reports that are generated for a session. A Performance Session is created by running the Performance Wizard or by manually creating a session. The Performance Session is displayed in the Performance Explorer after the Performance Session has been created.

To view Performance Session properties, select the session name in Performance Explorer, right-click it and then select Properties.

The performance session has the following property pages:

General

These settings enable you to select between sampling and instrumentation, to add .NET object collection and lifetime data, to display the Data Collection Control window during data collection, and to specify the default report location and naming conventions.

Launch

These settings enable you to select from a list of binaries and specify the start order of the binaries.

Sampling

These settings enable you to select the sample event and sampling interval when sampling is used as the profiling method. A sample event is used to collect profiling data at the specified interval. For example, if the sample event is clock cycles and the sampling interval is set to 10,000,000 then profiling data is collected after every 10 million clock cycles. The following four types of sample events are available:

  • Clock Cycles - for CPU bound problems

  • Page Faults - for memory related problems

  • System Calls - for I/O related problems

  • Performance Counters - for low-level performance problems

  • Additional sample events can be specified based on available performance counters

Binary

These settings enable you to specify whether you want to relocate the instrumented binary to another location. For example, if you are profiling My.DLL and chose not to relocate the instrumented binary, a backup copy of My.DLL named My.Orig.DLL is created. Subsequently, My.DLL is modified by inserting probes to collect data. If you decide to relocate the instrumented binary, the original binary is not renamed and the instrumented binary is copied to the specified location for use during instrumentation.

Instrumentation

These settings enable you to specify any Pre-instrument and Post-instrument events that you want to occur before or after the instrumentation process. For more information, see How to: Specify Pre- and Post-Instrument Commands.

CPU Counters

These settings enable you to collect data about CPU performance counters. Portable Performance counters are available regardless of the CPU design or manufacturer.

Platform Events are specific to the CPU design and manufacturer. For more information about on-chip performance counters, see the specific processor documentation.

Windows Events

During profiling, you can collect data from event trace providers. You can view the data by using the VSPerfReport.exe command line tool /calltrace option. For more information about Event Tracing for Windows (ETW), see About Event Tracing. For more information about VSPerfReport.exe, see VSPerfReport.

Windows Counters

This option enables you to collect data from Windows Performance Monitor counters. To collect this data, select the check box labeled Collect Windows Performance Counters. The collection interval can be set in the Collection Interval box. Counter Category and Instance might be available also. Some default Windows Performance Monitor counters are available.

Advanced

These settings enable you to add options to the instrumentation process by specifying one or more options of the VSInstr command line profiling tool. For example, to restrict profiling to a function called MyFunction, type -include:MyFunction in the Additional instrumentation options text box.

See Also

Other Resources

Overviews (Profiling Tools)

Configuring Performance Sessions for Profiling Tools

Controlling Data Collection in Profiling Tools