vote up 1 vote down star

Hi,

I need to collect data on firefox CPU usage during web-development coding session and I'm wondering if it is possible to monitor CPU usage of particular firefox plugin.

Right now i'm using windows' perfmon.msc, but it will only allow me to monitor firefox process as a whole.

Do you know any tools that would allow me to get CPU data from a plugin? Is it possible at all ?

flag

60% accept rate

2 Answers

vote up 2 vote down check

You could analyze the CPU usage using Process Explorer. Right-click on the Firefox process and select properties. On the Threads tab you will see the different threads including add-ins such as Flash or Acrobat with their CPU usage listed.

EDIT: In fact, it should be possible to monitor threads with perfmon, too: Right-click to select Add Counters... and then choose Threads as performance object.

link|flag
Perhaps you know if there's a way to collect data Process Explorer is displaying ? – CountZero Mar 20 at 8:52
Not that I'm aware of. But you might want to give the other tools of the Sysinternals suite a try. In fact, it should be possible to monitor threads with perfmon, too: Right-click to select Add Counters and then choose Threads as performance object. – divo Mar 20 at 10:06
thanks a lot. I think this is what I need. – CountZero Mar 20 at 10:41
vote up 0 vote down

I'd guess your best option would be to test your plugin in a seperate Firefox process, but you're probably doing that anyway.

For real profiling you should use Firebug. I'm not sure about it, but I think it is possible to run XUL apps inside of Firefox (without integrating it as a plugin). If this is not an option then you could maybe separate out code that you suspect to be slow into a web page and profile it with Firebug. This would of course only work for stuff that is not interacting with the Mozilla core.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.