Documentation
ยถ
Overview ยถ
Package profile represents a pprof profile as a directed graph.
This package is a simplified fork of github.com/google/pprof/internal/graph.
Package profile provides a representation of github.com/google/pprof/proto/profile.proto and methods to encode/decode/merge profiles in this format.
Index ยถ
- Variables
- type Demangler
- type Edge
- type EdgeMap
- type Function
- type Graph
- type Label
- type Line
- type Location
- type Mapping
- type Node
- type NodeInfo
- type NodeMap
- type NodePtrSet
- type NodeSet
- type Nodes
- type Options
- type Profile
- func (p *Profile) Aggregate(inlineFrame, function, filename, linenumber, address bool) error
- func (p *Profile) CheckValid() error
- func (p *Profile) Compatible(pb *Profile) error
- func (p *Profile) Copy() *Profile
- func (p *Profile) Demangle(d Demangler) error
- func (p *Profile) Empty() bool
- func (p *Profile) FilterSamplesByTag(focus, ignore TagMatch) (fm, im bool)
- func (p *Profile) HasFileLines() bool
- func (p *Profile) HasFunctions() bool
- func (p *Profile) Merge(pb *Profile, r float64) error
- func (p *Profile) Normalize(pb *Profile) error
- func (p *Profile) Prune(dropRx, keepRx *regexp.Regexp)
- func (p *Profile) RemoveUninteresting() error
- func (p *Profile) Scale(ratio float64)
- func (p *Profile) ScaleN(ratios []float64) error
- func (p *Profile) String() string
- func (p *Profile) Write(w io.Writer) error
- type Sample
- type TagMatch
- type ValueType
Constants ยถ
This section is empty.
Variables ยถ
var ErrNoData = fmt.Errorf("empty input file")
Functions ยถ
This section is empty.
Types ยถ
type Demangler ยถ
Demangler maps symbol names to a human-readable form. This may include C++ demangling and additional simplification. Names that are not demangled may be missing from the resulting map.
type Edge ยถ added in go1.23.0
type Edge struct {
Src, Dest *Node
// The summary weight of the edge
Weight, WeightDiv int64
// residual edges connect nodes that were connected through a
// separate node, which has been removed from the report.
Residual bool
// An inline edge represents a call that was inlined into the caller.
Inline bool
}
Edge contains any attributes to be represented about edges in a graph.
func (*Edge) WeightValue ยถ added in go1.23.0
WeightValue returns the weight value for this edge, normalizing if a divisor is available.
type EdgeMap ยถ added in go1.23.0
type EdgeMap []*Edge
EdgeMap is used to represent the incoming/outgoing edges from a node.
type Function ยถ
type Function struct {
ID uint64
Name string
SystemName string
Filename string
StartLine int64
// contains filtered or unexported fields
}
Function corresponds to Profile.Function
type Graph ยถ added in go1.23.0
type Graph struct {
Nodes Nodes
}
Graph summarizes a performance profile into a format that is suitable for visualization.
type Label ยถ
type Label struct {
// contains filtered or unexported fields
}
Label corresponds to Profile.Label
type Location ยถ
type Location struct {
ID uint64
Mapping *Mapping
Address uint64
Line []Line
IsFolded bool
// contains filtered or unexported fields
}
Location corresponds to Profile.Location
type Mapping ยถ
type Mapping struct {
ID uint64
Start uint64
Limit uint64
Offset uint64
File string
BuildID string
HasFunctions bool
HasFilenames bool
HasLineNumbers bool
HasInlineFrames bool
// contains filtered or unexported fields
}
Mapping corresponds to Profile.Mapping
type Node ยถ added in go1.23.0
type Node struct {
// Info describes the source location associated to this node.
Info NodeInfo
// Function represents the function that this node belongs to. On
// graphs with sub-function resolution (eg line number or
// addresses), two nodes in a NodeMap that are part of the same
// function have the same value of Node.Function. If the Node
// represents the whole function, it points back to itself.
Function *Node
// Values associated to this node. Flat is exclusive to this node,
// Cum includes all descendents.
Flat, FlatDiv, Cum, CumDiv int64
// In and out Contains the nodes immediately reaching or reached by
// this node.
In, Out EdgeMap
}
Node is an entry on a profiling report. It represents a unique program location.
func (*Node) AddToEdge ยถ added in go1.23.0
AddToEdge increases the weight of an edge between two nodes. If there isn't such an edge one is created.
func (*Node) AddToEdgeDiv ยถ added in go1.23.0
AddToEdgeDiv increases the weight of an edge between two nodes. If there isn't such an edge one is created.
type NodeInfo ยถ added in go1.23.0
NodeInfo contains the attributes for a node.
func (*NodeInfo) NameComponents ยถ added in go1.23.0
NameComponents returns the components of the printable name to be used for a node.
func (*NodeInfo) PrintableName ยถ added in go1.23.0
PrintableName calls the Node's Formatter function with a single space separator.
type NodeMap ยถ added in go1.23.0
NodeMap maps from a node info struct to a node. It is used to merge report entries with the same info.
func (NodeMap) FindOrInsertNode ยถ added in go1.23.0
FindOrInsertNode takes the info for a node and either returns a matching node from the node map if one exists, or adds one to the map if one does not. If kept is non-nil, nodes are only added if they can be located on it.
type NodePtrSet ยถ added in go1.23.0
NodePtrSet is a collection of nodes. Trimming a graph or tree requires a set of objects which uniquely identify the nodes to keep. In a graph, NodeInfo works as a unique identifier; however, in a tree multiple nodes may share identical NodeInfos. A *Node does uniquely identify a node so we can use that instead. Though a *Node also uniquely identifies a node in a graph, currently, during trimming, graphs are rebuilt from scratch using only the NodeSet, so there would not be the required context of the initial graph to allow for the use of *Node.
type Nodes ยถ added in go1.23.0
type Nodes []*Node
Nodes is an ordered collection of graph nodes.
func CreateNodes ยถ added in go1.23.0
CreateNodes creates graph nodes for all locations in a profile. It returns set of all nodes, plus a mapping of each location to the set of corresponding nodes (one per location.Line).
type Options ยถ added in go1.23.0
type Options struct {
SampleValue func(s []int64) int64 // Function to compute the value of a sample
SampleMeanDivisor func(s []int64) int64 // Function to compute the divisor for mean graphs, or nil
DropNegative bool // Drop nodes with overall negative values
KeptNodes NodeSet // If non-nil, only use nodes in this set
}
Options encodes the options for constructing a graph
type Profile ยถ
type Profile struct {
SampleType []*ValueType
DefaultSampleType string
Sample []*Sample
Mapping []*Mapping
Location []*Location
Function []*Function
Comments []string
DropFrames string
KeepFrames string
TimeNanos int64
DurationNanos int64
PeriodType *ValueType
Period int64
// contains filtered or unexported fields
}
Profile is an in-memory representation of profile.proto.
func Merge ยถ
Merge merges all the profiles in profs into a single Profile. Returns a new profile independent of the input profiles. The merged profile is compacted to eliminate unused samples, locations, functions and mappings. Profiles must have identical profile sample and period types or the merge will fail. profile.Period of the resulting profile will be the maximum of all profiles, and profile.TimeNanos will be the earliest nonzero one.
func Parse ยถ
Parse parses a profile and checks for its validity. The input must be an encoded pprof protobuf, which may optionally be gzip-compressed.
func (*Profile) Aggregate ยถ
Aggregate merges the locations in the profile into equivalence classes preserving the request attributes. It also updates the samples to point to the merged locations.
func (*Profile) CheckValid ยถ
CheckValid tests whether the profile is valid. Checks include, but are not limited to:
- len(Profile.Sample[n].value) == len(Profile.value_unit)
- Sample.id has a corresponding Profile.Location
func (*Profile) Compatible ยถ
Compatible determines if two profiles can be compared/merged. returns nil if the profiles are compatible; otherwise an error with details on the incompatibility.
func (*Profile) Demangle ยถ
Demangle attempts to demangle and optionally simplify any function names referenced in the profile. It works on a best-effort basis: it will silently preserve the original names in case of any errors.
func (*Profile) FilterSamplesByTag ยถ
FilterSamplesByTag removes all samples from the profile, except those that match focus and do not match the ignore regular expression.
func (*Profile) HasFileLines ยถ
HasFileLines determines if all locations in this profile have symbolized file and line number information.
func (*Profile) HasFunctions ยถ
HasFunctions determines if all locations in this profile have symbolized function information.
func (*Profile) Merge ยถ
Merge adds profile p adjusted by ratio r into profile p. Profiles must be compatible (same Type and SampleType). TODO(rsilvera): consider normalizing the profiles based on the total samples collected.
func (*Profile) Normalize ยถ
Normalize normalizes the source profile by multiplying each value in profile by the ratio of the sum of the base profile's values of that sample type to the sum of the source profile's value of that sample type.
func (*Profile) Prune ยถ
Prune removes all nodes beneath a node matching dropRx, and not matching keepRx. If the root node of a Sample matches, the sample will have an empty stack.
func (*Profile) RemoveUninteresting ยถ
RemoveUninteresting prunes and elides profiles using built-in tables of uninteresting function names.
type Sample ยถ
type Sample struct {
Location []*Location
Value []int64
Label map[string][]string
NumLabel map[string][]int64
NumUnit map[string][]string
// contains filtered or unexported fields
}
Sample corresponds to Profile.Sample