Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Perfmon File Analysis Tools

I have a bunch of perfmon files that have captured information over a period of time. Whats the best tool to crunch this information? Idealy I'd like to be able to see avg stats per hour for the object counters that have been monitored.

like image 509
Daniel Pollard Avatar asked Aug 25 '08 23:08

Daniel Pollard


People also ask

How do you analyze perfmon data?

To analyze counter data with the Perfmon Viewer, you can use the controls and indicators that exist in the lower and upper sectors of the viewer interface, which are referred to as the Counter Table and the Data Grid, respectively. The controls can change the way you display the data to facilitate analysis.

What is Perfmon tool?

The Windows Performance Monitor is an SNMP-based performance-monitoring tool for Windows environments. PerfMon monitors network elements such as computers, routers, and switches.


2 Answers

From my experience, even just Excel makes a pretty good tool for quickly whipping up graphs of perfmon if you relog the data to CSV or TSV. You can just plot a rolling average & see the progression. Excel isn't fancy, but if you don't have more than 30-40 megs of data it can do a pretty quick job. I've found that Excel 2007 tends to get unstable when using tables & over 50 megs of data: at one point an 'undo' caused it to consume 100% cpu & 1.3 GB of RAM.

Addendum - relog isn't the best known tool but it is very useful. I don't know of any GUI front ends, so you just have to run it from the command line. The two most common cases I've used it for are

  1. Removing unnecessary counters from logs that different sysadmin gave me, e.g. the entire process & memory objects.
  2. Converting the binary perfmon logs to .csv or .tsv files.
like image 185
C Hogg Avatar answered Nov 06 '22 23:11

C Hogg


Perhaps look into using LogParser. It depends on how the info was logged (Perfmon doesn't lack flexibility)

If they're CSV you can even use the ODBC Text drivers and run queries against them!

(performance would be 'intriguing')

And here's the obligatory link to a CodingHorror article on the topic ;-)

like image 38
Leon Bambrick Avatar answered Nov 06 '22 23:11

Leon Bambrick