Tagged Questions

7
votes
1answer
111 views

Is oprofile still alive and well?

Is the oprofile project still alive and well? I know it is still supported in the default linux kernel and that the user space utilities works (at least on the Arch linux I'm running), but the ...
6
votes
3answers
872 views

Linux time sample based profiler

short version: Is there a good time based sampling profiler for Linux? long version: I generally use OProfile to optimize my applications. I recently found a shortcoming that has me wondering. ...
5
votes
4answers
958 views

Is there any similar tool for Linux that works like Shark on Mac OS X?

Shark on Mac OS X is a great tool for profiling an application on a running system. Is there any similar tools for Linux? OProfile looks like it could be, anyone used it?
4
votes
2answers
529 views

How am I supposed to interpret OProfile output?

I tried profiling my application with OProfile recently. The data gathered is already very valuable to me, but I'm having difficulties with its precise interpretation. After running my app with ...
2
votes
0answers
76 views

How can I get OProfile / Xenoprof to use event counters when running on EC2?

I'm writing a cluster-wide profiling tool for EC2 that is designed to collect data by running OProfile on each instance. I'd eventually like to aggregate the XML output generated by opreport, and ...
2
votes
1answer
967 views

oprofile unable to produce call graph

I am trying to use oprofile to generate call graph. Compiler is g++, platform is linux x86-64, linker is gfortran C++ code is compiled with -fno- omit-frame-pointer. oprofile is started with ...
2
votes
3answers
1k views

Which profiler is more accurate: OProfile or Google Performance Tools?

I found two great profilers: OProfile Google Performance Tools Have anyone tried them both? Which is better?
1
vote
0answers
30 views

Tools to help profile cache misses

What tools does the community use to help identify if cache misses are even a problem, and if they are a problem where they are occuring in the code? The first question is: How do I identify how ...
1
vote
2answers
168 views

What profiler should I use to measure _real_ time (including waiting for syscalls) spend in this function, not _CPU_ one

The application does not calculate things, but does i/o, read files, uses network. I want profiler to show it. I expect something like something like in callgrind that calls clock_gettime each ...
1
vote
1answer
160 views

Basic doubt in Oprofile

I am trying to profile my software (in Linux) with oprofile. My software consists of both userspace and kernel module. First my doubt is what does the --separate=kernel option do? What will be the ...
0
votes
0answers
25 views

oprofile, oreport: How do I get it to report the containing process name or id?

I'm using oprofile to profile a system. I enabled --callgraph=10 when starting, and I do opreport -lc to get the call graphs. I'm finding that 5% of the system time is spent in fgetc, which suggests ...
0
votes
1answer
38 views

Setup OProfile on proprietary kernel

I'm trying to set up OProfile on our proprietary kernel with no success. The kernel is based on: 2.6.34.8 running on mips74k CPU. Is it possible to do so? If so, I would really appreciate any guide ...
0
votes
1answer
56 views

oprofile isn't sampling LLC_MISSES cache events

I'm trying to use oprofile to record cache misses in a large realtime app: $ sudo opcontrol --no-vmlinux --event=LLC_MISSES:100000 --session-dir=/var/tmp/oprofile -c=5 --start But when I look at ...
0
votes
2answers
47 views

Can oprofile be made to use a directory other than /root/.oprofile?

We're trying to use oprofile to track down performance problems on a server cluster. However, the servers in question have a read-only file system, where /var/tmp is the only writeable directory. ...
0
votes
3answers
431 views

oprofile on Linux running in a virtual machine

I'm running a Linux Ubuntu 10.4 VM using VirtualBox. I'm trying to use oprofile to profile some application in the virtual machine. I've installed oprofile 0.9.6 but I cannot get it to work. When I ...
0
votes
0answers
262 views

oprofile unable to produce callgraph on ARM

This is actually an exact duplicate of this SO question which unfortunately does not have any answer. Is it possible to get a proper callgraph on ARM? I'm using oprofile 0.9.6 on an ARM926 which does ...