Google performance tool for CPU and Heap profiling

learn more… | top users | synonyms

1
vote
0answers
80 views

Combine several google-pprof files (pproc CPU profiler)

I want to use CPU Profiler from google-perftools (gperftools's libprofiler.so ), which is described here: http://gperftools.googlecode.com/svn/trunk/doc/cpuprofile.html In my setup I want to run the ...
0
votes
3answers
399 views

How to use pprof in Go program

How to use pprof in Go program? There is a Go package named net/http/pprof,but I can't use it. The document says go tool pprof http://localhost:6060/debug/pprof/heap ,which does not work. And,what ...
3
votes
1answer
419 views

How exactly does gperftools CPU profiler start?

gperftools documentation says that libprofiler should be linked into a target program: $ gcc myprogram.c -lprofiler (without changing a code of the program). And then program should be run with a ...
0
votes
0answers
353 views

Interpreting GPerfTools sample count

I'm struggling a little with reading the textual output the GPerfTools generate. I think part of the problem is that I don't fully understand how the sampling method operates. From Wikipedia I gather ...
1
vote
1answer
49 views

Module#__temp__ in perftools.rb output

While profiling some of our Ruby code perftools.rb shows the following output: Total: 291 samples ...
0
votes
0answers
250 views

Trouble understanding gperftools/perftools.rb output

Context: I'm trying to understand the call graph generated by perftools.rb There was a fix for eventmachine that resulted in an increase from 500 requests/sec to 7000 requests/sec when using ...
1
vote
0answers
50 views

google CPU profiler error: stack trace depth >=2**32

I am trying to profile my program using the google CPU perf tools, but when I try to analyze the .prof file, I get an error like this: At index 5519 (address 0126170): node1.prof: stack trace depth ...
6
votes
1answer
523 views

Line number in Google Perftools CPU profiler on MacOSX

I am trying to profile some C++ programs on MacOSX. So I built google-perftools, wrote a program, compiled using MacPorts g++ 4.7, with -g compiler flag, and linked to libprofiler. Then I ran: ...
0
votes
1answer
208 views

Why this tcmalloc error SbrkSysAllocator failed happen?

I am using tcmalloc_minimal of google-perftools as the default memory allocater in my c++ program. It print out this infomation: src/system-alloc.cc:427] SbrkSysAllocator failed And the program ...
1
vote
1answer
342 views

Installing perftools.rb via proxy

sudo gem install perftools.rb -p http://10.10.10.10:3128 ... /usr/local/lib/ruby/1.9.1/net/http.rb:762:in "initialize": Connection refused - connect(2) (Errno::ECONNREFUSED) ... Requesting ...
7
votes
1answer
431 views

How to profile RSpec with perftools and bundler?

I need to profile the test suite that I usually run with bundle exec rspec spec/ and produce the GIF image. What is the command to run the perftools.rb so that it works correctly with bundler?
3
votes
1answer
147 views

Why is Kernel#require taking up 45% of my get time?

In an effort to speed up my test suite I profiled it and got the following Total: 1445 samples 650 45.0% 45.0% 1171 81.0% Kernel#require 261 18.1% 63.0% 261 18.1% ...
1
vote
1answer
531 views

Compiling Python 2.7.2 with google-perftools

I have a debian squeeze operating system (64 bits). I want to use python with google-perftools. To perform that I compiled myself python 2.72 with the option "-lctmalloc". But I get few errors. I ...
2
votes
2answers
129 views

pprof tells me that getaliasbyname_r() occupied 56% of cpu time?

I'm using google-perftools to profile my program written in C++ and compiled with g++4.5.2. pprof tells me that getaliasbyname_r() occupied 56% of cpu time! What on earth does getaliasbyname_r() do? ...
1
vote
1answer
216 views

substitution for googleperf tools that works on 64 bit Linux

As some of you might know Google provides for free great collection of tools for analyzing c++ code: http://code.google.com/p/google-perftools/ Problem is that there is apparently some libunwind ...
0
votes
1answer
246 views

Format of google-perftools/pprof with heap profiling

There is a pprof utility in google-perftools package. It is utility to convert profile files from google-perftools cpuprofiler and heapprofiler into beautiful images: like ...
3
votes
1answer
378 views

How to interpret addresses in Google perf tools CPU profiler

My C++ program is consuming a lot of CPU, and more so as it runs. I used Google Performance Tools to profile CPU usage, and this is what I got: (pprof) top Total: 1343 samples 1330 99.0% 99.0% ...
2
votes
0answers
272 views

How to use perftools under windows

From the Readme.txt in the source, I know that it has not been tested under windows system. Does anyone know how to make it work anyway?
0
votes
1answer
602 views

How to use google performance tool in windows

I tried to use google perftools on Windows. I compiled the source code in VS2010 and started a new test project and tried to link the libtcmalloc_minimal-debug.dll. And it failed with ...
0
votes
1answer
183 views

How to generate graphs from .heap files created by google HEAPPROFILER

Like the question says I created some .heap files using awesome google perftools and now I cant view them(ofc i can open them in the vim, but I want graphical representation )... I tried using the ...
1
vote
1answer
732 views

How to find CPU Usage in google profiler

I am using Google CPU Profiling tool. http://google-perftools.googlecode.com/svn/trunk/doc/cpuprofile.html On the documentation it is given Analyzing Text Output Text mode has lines of output ...
1
vote
1answer
198 views

Regarding HEAPCHECK of google-perftools

I need to fix leaks in a huge open-source library. For that I am using google-perftools, Now this library is linked in another big application, which can also have possibaly lots of memory leaks [ ...
1
vote
1answer
1k views

Google perftool cannot read file “libprofiler.so.0”

I am trying the google performance tool for CPU time profiling. However, I had encountered some problem that I cannot read the shared library file "libprofiler.so.0" I had read the README of google ...
2
votes
3answers
3k 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?
6
votes
2answers
3k views

Google Performance Tools (profiler) tutorial

I just downloaded and built the libraries/executables of Google Performance Tools. Before I run the CPU profiler on the application that I want to investigate, I want to learn how to use the tools ...
2
votes
2answers
1k views

Has anybody used Google Performance Tools?

Looking for feedback on : http://code.google.com/p/google-perftools/wiki/GooglePerformanceTools