views:

42

answers:

2

Hello All, I was wondering if there is a tool to keep track of application performance. What I have in mind is a tool that will listen for updates and register performance metrics published by an application. i.e. time to serve a request, time a certain operation took to finish. And this tool would then aggregate the data and measure performance trends.

+1  A: 

If you want to measure your application from outside, then you can use RRDtool to collect the data.

Tadeusz A. Kadłubowski
yes sir this is it!!! Thanks alot! Are there any alternatives?
Santosh
A: 

You can use slamd for webapp written in Java. For Django use hotshot.

Search for profiler + your language, framework

iddqd