aboutsummaryrefslogtreecommitdiff
path: root/design/17280-profile-labels.md
diff options
context:
space:
mode:
Diffstat (limited to 'design/17280-profile-labels.md')
-rw-r--r--design/17280-profile-labels.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/design/17280-profile-labels.md b/design/17280-profile-labels.md
index a307995..c1460a8 100644
--- a/design/17280-profile-labels.md
+++ b/design/17280-profile-labels.md
@@ -14,7 +14,7 @@ function in different contexts when looking at profiles.
## Background
-[Proposal #16093](golang.org/issue/16093) proposes to generate profiles in the
+[Proposal #16093](https://golang.org/issue/16093) proposes to generate profiles in the
gzipped profile proto format that's now the standard format pprof expects
profiles to be in.
This format supports adding labels to profile records, but currently the Go
@@ -55,7 +55,7 @@ That's why it's possible to set profile labels but not retrieve them.
## API
The following types and functions will be added to the
-[runtime/pprof](golang.org/pkg/runtime/pprof) package.
+[runtime/pprof](https://pkg.go.dev/runtime/pprof) package.
package pprof
@@ -149,7 +149,7 @@ New goroutines inherit the labels set on their creator.
There are no compatibility issues with this change. The compressed binary format
emitted by the profiler already records labels (see
-[proposal 16093](golang.org/issue/16093)), but the profiler does not populate
+[proposal 16093](https://golang.org/issue/16093)), but the profiler does not populate
them.
## Implementation