first commit
136 files changed
tree: 815ddd02cec5f4c37767c7b0f3df8f16342f7816
  1. compat/
  2. testdata/
  3. third_party/
  4. .gitignore
  5. AUTHORS
  6. builder.cc
  7. builder.h
  8. chrome_huge_pages_mapping_deducer.cc
  9. chrome_huge_pages_mapping_deducer.h
  10. chrome_huge_pages_mapping_deducer_test.cc
  11. CONTRIBUTING
  12. CONTRIBUTORS
  13. intervalmap.h
  14. intervalmap_test.cc
  15. LICENSE
  16. Makefile
  17. map_util.h
  18. path_matching.h
  19. perf_data_converter.cc
  20. perf_data_converter.h
  21. perf_data_converter_test.cc
  22. perf_data_handler.cc
  23. perf_data_handler.h
  24. perf_data_handler_test.cc
  25. perf_to_profile.cc
  26. profile.proto
  27. profile_wrappers.proto
  28. README.md
README.md

Introduction

The perf_to_profile binary can be used to turn a perf.data file, which is generated by the linux profiler, perf, into a profile.proto file which can be visualized using the tool pprof.

For details on pprof, see https://github.com/google/pprof

THIS IS NOT AN OFFICIAL GOOGLE PRODUCT

Prerequisites:

Compilation

make perf_to_profile

Usage:

Profile a command using perf, for example:

perf record /bin/ls

The example command will generate a profile named perf.data, you should convert this into a profile.proto then visualize it using pprof:

perf_to_profile perf.data profile.pb
pprof -web profile.pb

Recent versions of pprof will automatically invoke perf_to_profile:

pprof -web perf.data