MCPcopy Index your code
hub / github.com/google/pprof

github.com/google/pprof @main

repository ↗ · DeepWiki ↗ · + Follow
1,233 symbols 3,380 edges 88 files 569 documented · 46% 96 cross-repo links
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:

  • Go development kit of a supported version. Follow these instructions to prepare the environment.

  • Graphviz: http://www.graphviz.org/ Optional, used to generate graphic visualizations of profiles

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.

Extension points exported contracts — how you extend this code

Writer (Interface)
Writer provides a mechanism to write data under a certain name, typically a filename. [8 implementers]
internal/plugin/plugin.go
Writer (Interface)
Writer provides a mechanism to write data under a certain name, typically a filename. [8 implementers]
driver/driver.go
TagMatch (FuncType)
TagMatch selects tags for filtering
profile/filter.go
PostProcessor (FuncType)
PostProcessor is a function that applies post-processing to the report output
internal/driver/commands.go
ObjTool (Interface)
An ObjTool inspects shared libraries and executable files. [7 implementers]
internal/plugin/plugin.go
ObjTool (Interface)
An ObjTool inspects shared libraries and executable files. [7 implementers]
driver/driver.go
ObjFile (Interface)
An ObjFile is a single object file: a shared library or executable. [6 implementers]
internal/plugin/plugin.go
ObjFile (Interface)
An ObjFile is a single object file: a shared library or executable. [6 implementers]
driver/driver.go

Core symbols most depended-on inside this repo

Copy
called by 58
profile/profile.go
String
called by 51
driver/driver.go
Close
called by 41
driver/driver.go
PrintErr
called by 38
driver/driver.go
abs64
called by 35
internal/graph/graph.go
helpText
called by 31
internal/driver/commands.go
Name
called by 28
driver/driver.go
Scale
called by 23
internal/measurement/measurement.go

Shape

Function 661
Method 384
Struct 149
TypeAlias 17
Interface 16
FuncType 4
Class 2

Languages

Go91%
TypeScript9%

Modules by API surface

internal/graph/graph.go76 symbols
internal/report/report.go53 symbols
internal/driver/driver_test.go53 symbols
internal/driver/html/common.js50 symbols
driver/driver.go48 symbols
profile/profile.go39 symbols
internal/report/source.go38 symbols
internal/plugin/plugin.go38 symbols
internal/binutils/binutils.go36 symbols
profile/profile_test.go35 symbols
profile/proto.go34 symbols
internal/driver/html/stacks.js34 symbols

Dependencies from manifests, versioned

github.com/chromedp/cdprotov0.0.0-2025040303223 · 1×
github.com/chromedp/sysutilv1.1.0 · 1×
github.com/go-json-experiment/jsonv0.0.0-2025021117115 · 1×
github.com/gobwas/httpheadv0.1.0 · 1×
github.com/gobwas/poolv0.2.1 · 1×
github.com/ianlancetaylor/demanglev0.0.0-2025041719323 · 1×
golang.org/x/sysv0.32.0 · 1×

For agents

$ claude mcp add pprof \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact