Click here to Skip to main content
15,885,953 members
Articles / Desktop Programming / MFC

Logging Process Performance Info

Rate me:
Please Sign up or sign in to vote.
3.40/5 (2 votes)
11 Apr 20021 min read 55.7K   819   12   2
This article contains a small tool which use PDH functions to obtain process info/performance data.

Sample Image - processinfo.gif

Introduction

The very important step in developing application is performance testing. Usually, it starts before main release, so this simple technique is primarily useful for QA engineers because it can help you to enhance your auto tests or scripts. But it can be quite useful for getting some extra information about being of your application/process during long period of time. Developers and QA staff can use this tiny tool when it's necessary to understand what operations are unpredictably slow or lead to memory leaks or doing something wrong at last.

Well, now some usage information:

// Parameters:
//
// -proc : process name
// -time : time to sleep in msec between logging info
// -repeat : count of repeat get-info actions
// -text : text to be passed into file 
//         (should be last parameter in command line)
//
// Examples:
//
// Following line add into (created/opened) file 
// 5 lines through 1 second with memory info
// and comment line "Entry point #1" before this info
// cpuinf.exe -proc Winamp -time 1000 -repeat 5 -text Entry point #1
...

Output file will be performance.csv, as you can guess - csv - is Comma-Separated Excel-understandable format - so you just need to click-on-it to open in MS Excel and select few columns to create charts with application performance information. This should really save your time. ;)

Possibly you can find a new (not listed above) appropriate task for using this (please keep me informed)...

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.


Written By
Web Developer
Belarus Belarus
QA engineer

Comments and Discussions

 
QuestionWindows System Monitor ? Pin
Matthias Mann12-Apr-02 7:24
Matthias Mann12-Apr-02 7:24 
AnswerRe: Windows System Monitor ? Pin
12-Apr-02 7:51
suss12-Apr-02 7:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.