Retour au classement

google/pprof

Go

pprof is a tool for visualization and analysis of profiling data

performance-analysisperformancepprofprofiler
Croissance des étoiles
Étoiles
9.2k
Forks
666
Croissance hebdomadaire
Issues
48
5k
janv. 2016juil. 2019janv. 2023juil. 2026
ArtefactsGo Modulesgo get github.com/google/pprof
README

Github Action CI Codecov Go Reference

Introduction

pprof is a tool for visualization and analysis of profiling data.

pprof reads a collection of profiling samples in profile.proto format and generates reports to visualize and help analyze the data. It can generate both text and graphical reports (through the use of the dot visualization package).

profile.proto is a protocol buffer that describes a set of callstacks and symbolization information. A common usage is to represent a set of sampled callstacks from statistical profiling. The format is described on the proto/profile.proto file. For details on protocol buffers, see https://developers.google.com/protocol-buffers

Profiles can be read from a local file, or over http. Multiple profiles of the same type can be aggregated or compared.

If the profile samples contain machine addresses, pprof can symbolize them through the use of the native binutils tools (addr2line and nm).

This is not an official Google product.

Building pprof

Prerequisites:

To build and install it:

go install github.com/google/pprof@latest

The binary will be installed $GOPATH/bin ($HOME/go/bin by default).

Basic usage

pprof can read a profile from a file or directly from a server via http. Specify the profile input(s) in the command line, and use options to indicate how to format the report.

Generate a text report of the profile, sorted by hotness:

% pprof -top [main_binary] profile.pb.gz
Where
    main_binary:  Local path to the main program binary, to enable symbolization
    profile.pb.gz: Local path to the profile in a compressed protobuf, or
                   URL to the http service that serves a profile.

Generate a graph in an SVG file, and open it with a web browser:

pprof -web [main_binary] profile.pb.gz

Run pprof on interactive mode:

If no output formatting option is specified, pprof runs on interactive mode, where reads the profile and accepts interactive commands for visualization and refinement of the profile.

pprof [main_binary] profile.pb.gz

This will open a simple shell that takes pprof commands to generate reports.
Type 'help' for available commands/options.

Run pprof via a web interface

If the -http flag is specified, pprof starts a web server at the specified host:port that provides an interactive web-based interface to pprof. Host is optional, and is "localhost" by default. Port is optional, and is a random available port by default. -http=":" starts a server locally at a random port.

pprof -http=[host]:[port] [main_binary] profile.pb.gz

The preceding command should automatically open your web browser at the right page; if not, you can manually visit the specified port in your web browser.

Using pprof with Linux Perf

pprof can read perf.data files generated by the Linux perf tool by using the perf_to_profile program from the perf_data_converter package.

Viewing disassembly on Windows

To view disassembly of profiles collected from Go programs compiled as Windows executables, the executable must be built with go build -buildmode=exe. LLVM or GCC must be installed, so required tools like addr2line and nm are available to pprof.

Further documentation

See doc/README.md for more detailed end-user documentation.

See CONTRIBUTING.md for contribution documentation.

See proto/README.md for a description of the profile.proto format.

Dépôts similaires
GoogleChrome/lighthouse

Automated auditing, performance metrics, and best practices for the web.

JavaScriptnpmApache License 2.0auditbest-practices
developer.chrome.com/docs/lighthouse/overview/
30.6k9.7k
wolfpld/tracy

Frame profiler

C++Otherprofilergamedev
tracy.nereid.pl
16.4k1.2k
benfred/py-spy

Sampling profiler for Python programs

Rustcrates.ioMIT Licenseprofilerpython
15.4k540
plasma-umass/scalene

Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python with AI-powered optimization proposals

PythonPyPIApache License 2.0pythonprofiling
13.5k435
dgryski/go-perfbook

Thoughts on Go performance optimization

optimizationperformance
10.9k598
JerBouma/FinanceToolkit

Transparent and Efficient Financial Analysis

PythonPyPIMIT Licensefinancial-statementsstock-data
jeroenbouma.com/projects/financetoolkit
5.1k593
KDAB/hotspot

The Linux perf GUI for performance analysis.

C++performance-analysisperformance
5.1k288
sitespeedio/sitespeed.io

sitespeed.io is an open-source tool for comprehensive web performance analysis, enabling you to test, monitor, and optimize your website’s speed using real browsers in various environments.

JavaScriptnpmMIT Licensewebmetrics
sitespeed.io
5k627
microsoft/perfview

PerfView is a CPU and memory performance-analysis tool

C#MIT Licenseperformance-analysisperformance
channel9.msdn.com/Series/PerfView-Tutorial
4.7k776
plasma-umass/coz

Coz: Causal Profiling

COtherprofileroptimization
4.5k172
abumq/easyloggingpp

C++ logging library. It is powerful, supports asynchronous low latency, extendable, light-weight, fast performing, thread and type safe and consists of many built-in features. It provides ability to write logs in your own customized format. It also provide support for logging your classes, third-party libraries, STL and third-party containers etc.

C++MIT Licensec-plus-plus-11logging
3.9k943
LinShunKang/MyPerf4J

High performance Java APM. Powered by ASM. Try it. Test it. If you feel its better, use it.

JavaMavenBSD 3-Clause "New" or "Revised" Licenseperformance-monitoringperformance
3.6k556