Tagged Questions
The profiler tag has no wiki summary.
245
votes
28answers
50k views
What Are Some Good .NET Profilers?
What profilers have you used when working with .net programs, and which would you particularly recommend?
101
votes
10answers
18k views
71
votes
15answers
3k views
Beyond Stack Sampling: C++ Profilers
A Hacker's Tale
The date is 12/02/10. The days before Christmas are dripping away and I've pretty much hit a major road block as a windows programmer. I've been using AQTime, I've tried sleepy, ...
56
votes
4answers
29k views
SQL Server Profiler - How to filter trace to only display events from one database?
How do I limit a SQL Server Profiler trace to a specific database? I can't see how to filter the trace to not see events for all databases on the instance I connect to.
54
votes
20answers
14k views
Any decent C# profilers out there?
I urgently need a C# profiler.
Although I'm not averse to paying for one, something which is free or at least with a trial version would be ideal since it takes time to raise a purchase order.
Any ...
50
votes
5answers
16k views
46
votes
14answers
12k views
Please recommend a Java profiler
I am looking for the Java equivalent of gprof.
I did a little Java profiling using System.getCurrentMillis(),
and saw several GUI tools which seem too much.
A good compromise could be a text-based ...
32
votes
14answers
1k views
What features should a C#/.NET profiler have?
This could be a borderline advertisement, not to mention subjective, but the question is an honest one. For the last two months, I've been developing a new open source profiler for .NET called ...
28
votes
10answers
8k views
Open Source Java Profilers
What can you guys recommend to use with Java?
Only requirement is it should be open source, or has not too expensive academic licence .
26
votes
5answers
2k views
If profiler is not the answer, what other choices do we have?
After watching the presentation "Performance Anxiety" of Joshua Bloch, I read the paper he suggested in the presentation "Evaluating the Accuracy of Java Proļ¬lers". Quoting the conclusion:
Our ...
25
votes
13answers
10k views
Best .NET memory and performance profiler? [closed]
We are using Jetbrains' dotTrace. Can anyone recommend any other profiling tools that you think are better for profiling C# Windows Forms applications?
22
votes
3answers
1k views
CSS Performance Profiler?
I'm currently working on a site, and somewhere in my mass of stylesheets, something is killing performance in IE. Are there any good CSS profilers out there? I'd like a tool that can pinpoint rules ...
21
votes
3answers
5k views
Understanding Firebug profiler output
I've been trying to use Firebug's profiler to better understand the source of some JavaScript performance issues we are seeing, but I'm a little confused by the output.
When I profile some code the ...
20
votes
2answers
3k views
Scala profiler?
I started to program in Scala recently. I'm looking for a free Scala profiler. Reading from the language's official site led me to YourKit, but the program was not a free one.
Googling "scala ...
16
votes
8answers
7k views
What is a good easy to use profiler for C++ on Linux?
I need to profile some code running C++ on Linux. Can you guys recommend some profilers?
15
votes
2answers
2k views
Is there a visual profiler for Python?
I use cProfile now but I find it tedious to write pstats code just to query the statistics data.
I'm looking for a visual tool that shows me what my Python code is doing in terms of CPU time and ...
13
votes
9answers
1k views
How to profile my C++ application on linux
HI,
I would like to profile my c++ application on linux.
I would like to find out how much time my application spent on CPU processing vs time spent on block by IO/being idle.
I know there is a ...
13
votes
5answers
7k views
Perl memory usage profiling and leak detection?
I wrote a persistent network service in Perl that runs on Linux.
Unfortunately, as it runs, its Resident Stack Size (RSS) just grows, and grows, and grows, slowly but surely.
This is despite ...
12
votes
6answers
1k views
Best and safest Java Profiler for production use?
I'm looking for a Java Profiler for use in a very high demand production environment, either commercial or free, that meets all of the following requirements:
Lightweight integration with code (no ...
12
votes
5answers
4k views
Java Profiler tool on Mac OS X
I'm developing both a Java app and J2EE webapp using Eclipse Europa on Mac OS X 10.5.8. The webapp provides a RESTful API layer for the Java app I've written. I'm running the webapp using tomcat from ...
12
votes
8answers
11k views
Profiler for Visual Studio 2008, C++?
Are there any good, free (or at least reasonably cheap)
profilers for at least native C++ that can integrate with
Visual Studio 2008 Professional?
I looked at DevPartner community edition but they
...
12
votes
4answers
2k views
Profiler for Sql CE
i wonder if there is something similar to Sql Profiler for Sql Server Compact Edition?
i use SqlCE as backend for a desktop application and it would be really great to have something like sql profiler ...
11
votes
4answers
290 views
how does a c# profiler work?
I'm curious how does a typical C# profiler work?
Are there special hooks in the virtual machine?
Is it easy to scan the byte code for function calls and inject calls to start/stop timer?
Or is ...
11
votes
5answers
785 views
.NET Profiler for Azure?
Does anyone know of a .NET profiler which works with Azure to figure out code bottlenecks.
I have tried to integrate dotTrace profiler - but haven't had any success.
Does anyone know of any that ...
11
votes
3answers
1k views
How can I profile a SQLAlchemy powered application?
Does anyone have experience profiling a Python/SQLAlchemy app? And what are the best way to find bottlenecks and design flaws?
We have a Python application where the database layer is handled by ...
11
votes
12answers
8k views
memory profiler for c++
Im trying to find a tool that can help me find out where my memory is allocated in a certain stage of my program. Most memory profilers cant do this and just tell you if memory is leaked or not.
Does ...
10
votes
4answers
1k views
Cannot make cProfile work in IPython
I'm missing something very basic.
class C:
def __init__(self):
self.N = 100
pass
def f(self, param):
print 'C.f -- param'
for k in xrange(param):
...
10
votes
6answers
3k views
Recommended Open Source Profilers
I'm trying to find open source profilers rather than using one of the commercial profilers which I have to pay $$$ for. When I performed a search on SourceForge, I have come across these four C++ ...
10
votes
5answers
1k views
How to write a profiler?
i would to know how to write a profiler? What books and / or articles recommended? Can anyone help me please?
Someone has already done something like this?
10
votes
2answers
2k views
Profiler/Analyzer for Erlang?
Are there any good code profilers/analyzers for Erlang? I need something that can build a Call graph for my code.
9
votes
2answers
188 views
Can XDebug track separately the time spent for profiler calls?
I am using XDebug as a profiler for a PHP application. I have run into a situation where XDebug changes severely the results in such a degree that they are useless.
Here a simplified example to ...
9
votes
3answers
348 views
F# interactive and performance profilers
F# Interactive (and in general REPL-style tools) is an ideal entrance to performance profiling. What could be easier than to select a code block and send it right to a profiler that would come back ...
9
votes
9answers
5k views
What advantages have a commercial Java profiler over the free ones, e.g. the one in Netbeans?
Occasionally I have to do some profiling work on Java code, and I would like to know why I should have my boss investigate in a commercial profiler as opposed to just use the one in Netbeans or ...
9
votes
6answers
1k views
How do code profilers work?
While I was working on an University project, I used a project-internal profiler made by an elder student, it was very basic but good enough since its task was to subtract times between two points of ...
9
votes
4answers
2k views
How Does AQTime Do It?
I've been testing out the performance and memory profiler AQTime to see if it's worthwhile spending those big $$$ for it for my Delphi application.
What amazes me is how it can give you source line ...
9
votes
11answers
5k views
C++ Code Profiler
Can anybody recommend a good code profiler for C++?
I came across Shiny - any good? http://sourceforge.net/projects/shinyprofiler/
9
votes
8answers
21k views
Oracle: is there a tool to trace queries, like Profiler for sql server?
i work with sql server, but i must migrate to an application with Oracle DB.
for trace my application queries, in Sql Server i use wonderful Profiler tool. is there something of equivalent for Oracle?
...
8
votes
2answers
167 views
Is there something similar to mini-mvc-profiler for Java?
Like the title said:
Is there something similar to the mini-mvc-profiler for Java?
I'm looking for something that can be used in a Struts or Spring MVC application and that shows a quick performance ...
8
votes
7answers
963 views
Good Profiler for C# 2010?
I love the profiler for Visual Studio Ultimate 2010. But I do not have $8,000 or whatever it costs to just get that functionality. Are there any profilers that are just as good, if not better? It ...
8
votes
1answer
115 views
Demangling typeclass functions in GHC profiler output
When profiling a Haskell program written in GHC, the names of typeclass functions are mangled in the .prof file to distinguish one instance's implementations of them from another. How can I demangle ...
8
votes
7answers
708 views
Which has been the most reliable, fastest Windows C++ profiler that you have used?
I need to profile a real time C++ app on Windows. Most of the available profilers are either terribly expensive, total overkill, or both. I don't need any .NET stuff. Since it is a real time app, I ...
8
votes
4answers
471 views
8
votes
4answers
870 views
Better Flex memory profiling tools
Does anyone know of any better tools that the Flex Builder Profiler? I've googled and googled to no avail.
While the FB tools are OK for small apps / small leak situations, they're nowhere near ...
8
votes
2answers
2k views
Any tool similar to ants profiler and free?
I want to test an asp.net web application. What are the best free graphical tools out there?
While something similar to the Ants would be really good, it would be nice to have a tool that even ...
8
votes
10answers
5k views
Does a Silverlight memory profiler exist?
CLR profiler does not seem to work with the Silverlight CLR. Does another memory profiler exist?
8
votes
3answers
2k views
Find out how much memory is being used by an object in C#?
Does anyone know of a way to find out how much memory an instance of an object is taking?
For example, if I have an instance of the following object:
TestClass tc = new TestClass();
Is there a way ...
7
votes
3answers
268 views
Windows Application Profilers - C++ Exe
I have a bat script which calls out to an exe and starts this off - I dont know what language it is written in (Probably C++)
I want to find a profiler that allows me to run a command a few times ...
7
votes
2answers
200 views
Why does the line-by-line stats for NYTProf not match the totals?
I have a Perl script that takes about 30 minutes to run, so of course I run Devel::NYTProf. Great profiler. For many of my subs, I'm getting some data that doesn't make sense to me.
I'm running with ...
7
votes
5answers
442 views
Is there a profiler for C (gcc) to profile code lines separately?
I come from a Matlab background so I am used to a profiler which profiles every single line and not just every function like gprof or callgrind. Is there a profiler for C with a similar feature?
...
7
votes
5answers
1k views
Access MDB: Is it possible to monitor and log actual queries made against an Access MDB?
Is it possible to monitor what is happening to an Access MDB (ie. what SQL queries are being executed against it), in the same way as you would use SQL Profiler for the SQL Server?
I need logs of ...