profiling

Looking for a continuous integration profiler (C#)

Hi all, I would like to perfom automatic profiling on my code during my continuous integration. I know tools like dottrace that allow to profile my code, but what I would like is a tool that each night makes profiling and send me a report then I can know which code needs to be improved. Thanks in advance for any help ...

Java profiling - how can I get a method by method analysis of my application?

Hi I want to run my Java app and for a given workload be able to see: how many times a given function was called how expensive each function call is in relative terms (i.e. how long each takes to execute) I know broadly where the bottle neck is in my application but I need a much more fine grained view in order to narrow it down. ...

Do I need to write my own unmanaged IL library to rewrite IL with the CLR Profiling API?

I've been looking at some of the articles for the CLR Profiling API, and many of those articles talk about calling SetILFunctionBody() to do the actual IL rewriting; however, none of those articles actually explain exactly what you could use to rewrite the actual method IL bytes. Is there an unmanaged library out there that allows me to ...

Profiling a C or C++ based application that never exits

Hi I have a small doubt regarding profiling applications which never exit until we manually reboot the machine. I used tools like valgrind which talks about memory leaks or bloating of any application which exits after sometime. But is there any tool which can be used to tell about memory consumption, bloating, overhead created by t...

How to set up Maven to override a settings file for another when running a test ?

See the following Maven generated project target classes test-classes src main java scripts resources datasource-settings.xml test java resources datasource-settings.xml I would like, when running a test, to use the settings found in test/resources/datasou...

Is there a performance testing tool for dll's? (not for source code)

I know red-gate's ANTS Performance Profiler but it works with source code. I have an ASP.NET web application that is deployed on a remote server. I'm going to test its performance while it is working on the server. My main goal is to detect what method of what class is slow and then is a bottleneck. Is there a way or a tool? ...

How to trigger XDebug for a command line PHP script?

XDebug offers the configuration directive "xdebug.profiler_enable_trigger" that allows to activate profiling by passing the GET or POST parameter "XDEBUG_PROFILE" when calling a script via HTTP. This is handy if you don't want profiling for ALL of your scripts but only for a few special cases without always changing your PHP configuratio...

Can you Profile Ms test integration tests?

I have never done any profiling, and have come across the first place that I really want to do it. Is it possible to profile my MS integration tests? What tools do I need? is there something built-in to VS 2008 professional? ...

Profiling C code on Windows when using Eclipse

I know I can profile my code with gprof and kprof on Linux. Is there a comparable alternative to these applications on Windows? ...

Luke Stackwalker returns error when running, gprof works fine

I'm used to gprof for profiling my C code, but I want to start using a GUI-based Windows application such as Luke Stackwalker. gprof works perfectly fine on my binary, but Luke Stackwalker has some issues: Launching executable C:\lshare\POT03\Eclipse\Debug\POTaak3.exe. SymInit: Symbol-SearchPath: ';.;C:\Program Files\Luke Stackwalker;C:...

Checking speed of Android apps without needing physical devices?

I'm writing a game for Android. I'd like to target as many devices as possible. I'm aware that Droid owners buy about 50% of the apps and the rest are a mixture of G1 and HTC devices. So far, I've been testing my app in the emulator set to model the Droid phone (where I get about 40 fps) as well as on an actual Droid phone (where I get ...

Unusual high cpu utilization in ntkrnlpa:FsRtlAreNamesEqual and ntkrnlpa:RtlUpcaseUnicodeString

I am profiling a networking workload application on Windows XP. The VTune profiling result shows unusual high utilization on ntkrnlpa:FsRtlAreNamesEqual and ntkrnlpa:RtlUpcaseUnicodeString functions. From the module level, the workload spends 73% cpu time in ntkrnlpa.exe. In ntkrnlpa.exe module, 42% time is spent in FsRtlAreNamesEqual fu...

OProfile on android...

Guys, Has anybody used OProfile tool on android...If you are able to profile please provide the basic steps and any other configuration or setup in order to do that... Regards, Bharat Pawar ...

Flex profiler doesn't do anything

My Flex application has some memory problems which I'd like to find using the profiler. However, when I run the profiler from Flex Builder, nothing happens. The appication is run the regular way, but nothing is profiled. The Profiling perspective doesn't event open, and when I open the Profiling perspective, no memory usage is displayed....

ReferenceError: Error #1065: Variable ContextMenuClipboardItems is not defined.

I'm trying to use the flex profiler to discover where the performance problems in my app are. However, when I run the app, I get this error message. I don't get this when I run regularly or in debug mode. ReferenceError: Error #1065: Variable ContextMenuClipboardItems is not defined. at flash.ui::ContextMenu/initLinkAndClipboardProp...

Profiling Django

My django application has become painfully slow on the production. Prolly it is due to some complex or unindexed queries. Is there any django-ish way to profile my application? ...

Java Thread Profiling : Determine Thread waits for specific locks and duration of each wait

I have a Java application using threads, which uses several Lock object instances to synchronize access to common resources. Now as part of a performance measurement I want to measure the time spent by each thread in every lock. I have tried so far NetBeans profiler. Netbeans profiler shows me the total wait time for a thread but it i...

Can I see in firebug profiler funcitons list in order those call?

Can I see in firebug profiler funcitons list in order those call? Do you may be know another tools for this? ...

Can hotshot be used in multiple threads?

I have a long-running multithreaded program, and I'd like to occasionally like to call a function with Profile.runcall and dump the data to a file. The hotshot documentation states: Note: The hotshot profiler does not yet work well with threads. It is useful to use an unthreaded script to run the profiler over the code you’re interested...

How to profile program on Linux platform without rebuilding ?

I've used two profiling tools (VTune on windows and dbx (within sunstudio) on Solaris) which can profile program without rebuild them, and during profiling, the program just run at the same speed as normal. Both of these 2 features saved me a lot of time. Now I want to know if there is some free tools available on Linux platform can do ...