April 13

Performance Monitor – Did you know?

2  comments

Most developers are somehow familiar with Performance Monitor (often called PerfMon). Perfmon is a built-in windows tool that allows you to measure system performance (hardware, software services and applications) and help to determine the cause of performance problems.

I used it sporadically for many years but I never spend some time to explore the tool in-depth. Turns out that there are some unknown features that are quite useful and can be really handy during performance investigations and dealing with support issues.

Let me share some with you.

Sampling frequency and duration

By default, Perfmon is sampling every seconds with a duration of 100 seconds. This duration is often too short for any meaningful investigation problem so it’s important to change it with a more appropriate value.

To do it, right-click on Performance Monitor, click Properties and then set the graph elements properties.

2016-03-28 22_18_32-Start

Copy and Paste performance counters

It is possible to save performance counter settings into a file and later copy and paste them. This is well documented in Performance Monitor Tips and Tricks with John Rodriguez.

Sadly, at the time of writing, this behavior appears to be broken in Windows 10.

Record your performance analysis using Data Collector Sets

At work, on the SQL Monitor project, sometimes I had to deal with some customers having a performance problem. They often send screenshots of Perfmon after running it for few minutes on their system. Sometimes this is enough but it is usually more useful to actually get the full data.

Most people don’t know that you can actually record your performance analysis into a log file and send that file to anyone to open with PerfMon. Data Collector Sets are the way to do it.

You start creating a new Data Collector Set.

2016-04-12 21_26_26-Start

Give it a name, select Create Manually (Advanced) and click Next.

2016-04-12 21_28_47-Settings

Select Create data logs, check Performance Counters and then click Next.

2016-04-12 21_29_54-Settings

Add all the performance counters you want to monitor.

2016-04-12 21_32_37-Settings

Finally, specify the root directory where the logs will be saved and click Finish.

2016-04-12 21_38_38-Settings

You can open the properties to further customize it.

You can configure it to run automatically on a particular schedule, add a stop condition and add even tasks to run when the collection stops that might copy the results into a centralized shared folder or upload it somewhere. It is quite flexible. I invite you to explore all the options in the various tabs.

2016-04-12 21_41_48-Start

2016-04-12 21_42_22-Settings

You can manually start the collection at any time. Right click on your custom collector and then click Start. Similarly, you can stop it clicking Stop.

2016-04-12 21_44_08-Start

After the analysis is completed, you can copy the folder and send it to the support team or whoever need to analyze your data on an another machine.

Loading performance analysis data from log files

These are the steps to analyze a performance counter log that someone provided you:

  • Click on the Performance Monitor node
  • Click on the data collector set icon in the toolbar or use the CTRL + L shortcut
  • In the Data source section, select Log files and click Add
  • Add as many log files as you want

2016-04-12 21_52_16-Start

The result is an empty screen. This is a bit confusing. By default, the tool does not add any counters. You need to explicitly add the counters you are interested in using the green Plus icon in the toolbar.

You will only be able to select, the counters that has being collected in the log file.

2016-04-12 21_57_51-Settings

You can now explore the data as you like and do your performance investigation.

Conclusion

Performance Monitor is a low-level tool that is available in any version of Windows. Even if you can find more high level commercial performance analysis tools, I think it is important to learn how to use the out-of-the-box tools available on Windows. This post wanted to show you some of the useful features that this tool can provides you, features that sometimes are not as intuitive as you expect and are often unknown to many windows users and developers. I personally think that the ability to save a performance session and open it at a later time is extremely useful and I didn’t know it was possible till now. Hope you find it useful too.

There is certainly more to explore, but that is something for future posts.

 

 

 

 

 


Tags


You may also like

  • Thank you very much for your write-up. I would you like to ask you a question. I’m building a windows service application with C# and I want to learn this service performance through use PerfMon. Is it possible or not ?
    Also how can I make it ?

    Cheers.

  • You are welcome. If you are using WCF to implement your service you can use various perfmon counters as described here https://msdn.microsoft.com/en-us/library/ms735098(v=vs.110).aspx. Otherwise you need to create your custom performance counters that is relatively easy to do https://msdn.microsoft.com/en-us/library/ms735098(v=vs.110).aspx For general information about performance of services you can also consider using Process Explorer from sysinternals https://technet.microsoft.com/en-us/sysinternals/processexplorer.aspx?f=255&MSPPError=-2147217396

  • {"email":"Email address invalid","url":"Website address invalid","required":"Required field missing"}

    Subscribe to our newsletter now!

    Get instant access to the Master C# 9 webinar to learn all the new exciting C# 9 features quickly.
    Get regular videos and news on C# and .NET and offers on products and services to master C#.

    We will collect, use and protect your data in accordance with our Privacy Policy.

    >