Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show pprof labels in thread names #3501

Merged
merged 2 commits into from
Dec 4, 2023

Conversation

stefanhaller
Copy link
Contributor

If a goroutine has labels, we add them after the ID.

Fixes #3493.

}
sort.Strings(keys)
for _, k := range keys {
labels += fmt.Sprintf(" %s=%s", k, g.Labels()[k])
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use a strings.Builder

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah yes, thanks. See 93d379b.

Copy link
Member

@aarzilli aarzilli left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@stefanhaller
Copy link
Contributor Author

After testing this for a while I found that k1:v1 looks better than k1=v1, so I pushed a fixup (515f4cd) to change that. Not a big thing, let me know if you disagree.

@derekparker
Copy link
Member

@hyangah or @suzmue would you mind taking a look at this?

@stefanhaller
Copy link
Contributor Author

@derekparker Please note that over in #3493 some concerns were brought up; showing all labels might be too much when there are many. Please see the discussion there, starting at #3493 (comment).

@suzmue
Copy link
Contributor

suzmue commented Oct 4, 2023

I think this looks great but would love to see this behind an opt-in configuration to start! (commented on #3493 as well)

Comment on lines 1803 to 1836
var labels strings.Builder
if len(g.Labels()) > 0 {
var keys []string
for k := range g.Labels() {
keys = append(keys, k)
}
sort.Strings(keys)
for _, k := range keys {
fmt.Fprintf(&labels, " %s:%s", k, g.Labels()[k])
}
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we rewrite it as follows:

Suggested change
var labels strings.Builder
if len(g.Labels()) > 0 {
var keys []string
for k := range g.Labels() {
keys = append(keys, k)
}
sort.Strings(keys)
for _, k := range keys {
fmt.Fprintf(&labels, " %s:%s", k, g.Labels()[k])
}
}
keys := make([]string, 0, len(g.Labels()))
for k := range g.Labels() {
keys = append(keys, k)
}
sort.Strings(keys)
var labels strings.Builder
for _, k := range keys {
labels.WriteByte(' ')
labels.WriteString(k)
labels.WriteByte(':')
labels.WriteString(g.Labels()[k])
}

?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The implementation has changed after the discussion in #3493, as we don't show all labels any more.

I'm curious though, why is writing individual bytes manually better than Fprintf to a builder?

@stefanhaller
Copy link
Contributor Author

@suzmue I force-pushed to implement the config, please have a look!

@suzmue
Copy link
Contributor

suzmue commented Oct 13, 2023

I think having a more general solution here could be better. I think having the flexibility to look at all the pprof labels would be great.

We could combine that with another config to only show specific labels but I don't think that needs to go into this change, but I either a list of labels to show or a string that can be parsed like goroutineFilters would be good. It would be nice to be able to show both a single label like the name use case, and a combination of labels that are interesting to the user.

We can also make the pprof labels config easier to adjust / more discoverable by adding it to the callstack context menu in VS Code. Once we get this change in here I am happy to add it (see hide system goroutines example)

@stefanhaller
Copy link
Contributor Author

@suzmue Now I'm confused. 😅 Could you please be more specific as to what you would like me to do in this PR?

It sounds like you are thinking of having two different configs, where the second could be added later and would be some sort of filter for the labels. But then what's the first one? A bool option to enable the feature? But once we add the filter, would we still need the bool option?

I'm happy to implement the second option now, whatever it is, but I'd like to have agreement over the exact design before I start, in order to avoid wasting time. My proposal would be to add a single config, showPprofLabels, which is a list of strings, default empty. No globbing or regex, just a simple list of keys, because that simplifies things a lot. As a special case for my use case, I'd show just the value of the label if the length of the array is one, and k:v otherwise. The downside of this approach is that there's no easy way to say "show all keys" without listing them all manually; but we could add the special case of a single element of "*" for that, if needed.

Thoughts?

@suzmue
Copy link
Contributor

suzmue commented Oct 18, 2023

@stefanhaller I think your idea of showPprofLabels as a list of strings sounds great! Those two special cases also sound good to me. Thanks!

@stefanhaller
Copy link
Contributor Author

@suzmue I force pushed to implement the proposed solution.

@stefanhaller
Copy link
Contributor Author

Ping. @suzmue, would you have time to have a look at this? (Or anybody else?)

@@ -1812,10 +1822,41 @@ func (s *Session) onThreadsRequest(request *dap.ThreadsRequest) {
if g.Thread != nil && g.Thread.ThreadID() != 0 {
thread = fmt.Sprintf(" (Thread %d)", g.Thread.ThreadID())
}
var labels strings.Builder
appendLabelsForKeys := func(keys []string) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe call this writeLabelsForKeys to be more clear?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Renamed in 49a0898

if len(tr.Body.Threads) != 1 {
t.Errorf("got %d threads, expected 1\n", len(tr.Body.Threads))
}
// The first breakpoint is before the call to pprof.Do; no lables yet:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo: labels

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in fb5bcaf

showPprofLabelsConfig []string
expectedPrefixWithLabel string
}{
{
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since these test cases aren't super long, could we define them on a single line instead? eg:

{[]string{}, "* [Go 1]"},
{[]string{"k1"}, "* [Go 1 v1]"},
...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, reformatted in d5ac1c6

@@ -85,3 +94,37 @@ func configureSetSubstitutePath(args *launchAttachArgs, rest string) error {
}
return nil
}

func configureSetShowPprofLabels(args *launchAttachArgs, rest string) error {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you add documentation to command.go explaining how this configuration works please? For msgConfig

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added in 285116f

@stefanhaller
Copy link
Contributor Author

Thanks for the review, I addressed all requests. I referenced the individual fixup commits above to make it easier to see what I changed, but I'm going to squash them now (and rebase on master again).

The config is a string value that indicates the key of a pprof label whose value
should be shown as a goroutine name in the threads view.
@stefanhaller
Copy link
Contributor Author

I force-pushed again to fix the conflicts with master.

@aarzilli aarzilli merged commit f8c8b33 into go-delve:master Dec 4, 2023
1 of 2 checks passed
@stefanhaller stefanhaller deleted the show-labels-for-goroutines branch December 9, 2023 14:11
kakkoyun referenced this pull request in parca-dev/parca-agent Jan 8, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/go-delve/delve](https://togithub.com/go-delve/delve) |
`v1.21.2` -> `v1.22.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgo-delve%2fdelve/v1.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgo-delve%2fdelve/v1.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgo-delve%2fdelve/v1.21.2/v1.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgo-delve%2fdelve/v1.21.2/v1.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>go-delve/delve (github.com/go-delve/delve)</summary>

###
[`v1.22.0`](https://togithub.com/go-delve/delve/releases/tag/v1.22.0)

[Compare
Source](https://togithub.com/go-delve/delve/compare/v1.21.2...v1.22.0)

#### What's Changed

- all: remove obsolete build tags by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[https://github.com/go-delve/delve/pull/3513](https://togithub.com/go-delve/delve/pull/3513)
- service/dap: add the concrete type to interface type by
[@&#8203;suzmue](https://togithub.com/suzmue) in
[https://github.com/go-delve/delve/pull/3510](https://togithub.com/go-delve/delve/pull/3510)
- service/dap: fix bugs in stdout/stderr handling by
[@&#8203;hyangah](https://togithub.com/hyangah) in
[https://github.com/go-delve/delve/pull/3522](https://togithub.com/go-delve/delve/pull/3522)
- pkg/terminal: support vscode in edit command by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[https://github.com/go-delve/delve/pull/3524](https://togithub.com/go-delve/delve/pull/3524)
- Use a valid timezone in tested binary by
[@&#8203;upils](https://togithub.com/upils) in
[https://github.com/go-delve/delve/pull/3527](https://togithub.com/go-delve/delve/pull/3527)
- proc: implement follow exec mode on Windows by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3507](https://togithub.com/go-delve/delve/pull/3507)
- service/test: disable TestClientServer_chanGoroutines with rr backend
by [@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3492](https://togithub.com/go-delve/delve/pull/3492)
- proc/native: use cgo instead of C for freebsd by
[@&#8203;4a6f656c](https://togithub.com/4a6f656c) in
[https://github.com/go-delve/delve/pull/3529](https://togithub.com/go-delve/delve/pull/3529)
- proc: use DW_AT_trampoline to detect auto-generated code by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3528](https://togithub.com/go-delve/delve/pull/3528)
- proc: use stack machine to evaluate expressions by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3508](https://togithub.com/go-delve/delve/pull/3508)
- proc: fix comment typos by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[https://github.com/go-delve/delve/pull/3531](https://togithub.com/go-delve/delve/pull/3531)
- proc: add min and max builtins by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3530](https://togithub.com/go-delve/delve/pull/3530)
- CI: update staticcheck version by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3533](https://togithub.com/go-delve/delve/pull/3533)
- proc: remove expr evaluation goroutine from EvalExpressionWithCalls by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3532](https://togithub.com/go-delve/delve/pull/3532)
- service/api: use bitfield for prettyprint flags by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3536](https://togithub.com/go-delve/delve/pull/3536)
- proc: allow evaluator to reference previous frames by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[https://github.com/go-delve/delve/pull/3534](https://togithub.com/go-delve/delve/pull/3534)
- \*: Add explicit code of conduct by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[https://github.com/go-delve/delve/pull/3540](https://togithub.com/go-delve/delve/pull/3540)
- proc,service/dap,proc/gdbserial: fixes for debugserver
--unmask-signals by [@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3541](https://togithub.com/go-delve/delve/pull/3541)
- \*: release 1.21.2 (for master) by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3546](https://togithub.com/go-delve/delve/pull/3546)
- proc/native: wherever we check for exited we should also check
detached by [@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3547](https://togithub.com/go-delve/delve/pull/3547)
- pkg/proc: add inline function support for stripped binaries by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[https://github.com/go-delve/delve/pull/3549](https://togithub.com/go-delve/delve/pull/3549)
- cmd: fix a bunch of linter warnings from GoLand by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[https://github.com/go-delve/delve/pull/3550](https://togithub.com/go-delve/delve/pull/3550)
- proc: add regression test for issue
[#&#8203;3548](https://togithub.com/go-delve/delve/issues/3548) by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3553](https://togithub.com/go-delve/delve/pull/3553)
- \*: update dependencies by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[https://github.com/go-delve/delve/pull/3552](https://togithub.com/go-delve/delve/pull/3552)
- service: fix a bunch of linter warnings from GoLand by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[https://github.com/go-delve/delve/pull/3551](https://togithub.com/go-delve/delve/pull/3551)
- \*: Correct spelling mistakes by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[https://github.com/go-delve/delve/pull/3555](https://togithub.com/go-delve/delve/pull/3555)
- pkg,service: Remove redundant build constraints by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[https://github.com/go-delve/delve/pull/3556](https://togithub.com/go-delve/delve/pull/3556)
- Shorten variable types by
[@&#8203;stefanhaller](https://togithub.com/stefanhaller) in
[https://github.com/go-delve/delve/pull/3535](https://togithub.com/go-delve/delve/pull/3535)
- TeamCity: reupgrade linux/386 builder to Go 1.21 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3560](https://togithub.com/go-delve/delve/pull/3560)
- pkg/proc: improve support unwinding from sigpanic by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[https://github.com/go-delve/delve/pull/3559](https://togithub.com/go-delve/delve/pull/3559)
- pkg/proc: unskip passing tests and reorganize by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[https://github.com/go-delve/delve/pull/3561](https://togithub.com/go-delve/delve/pull/3561)
- chore: use strings.Contains instead by
[@&#8203;testwill](https://togithub.com/testwill) in
[https://github.com/go-delve/delve/pull/3562](https://togithub.com/go-delve/delve/pull/3562)
- pkg,service: remove unnecessary convertions by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[https://github.com/go-delve/delve/pull/3564](https://togithub.com/go-delve/delve/pull/3564)
- \*: remove checks for TRAVIS env variable by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3568](https://togithub.com/go-delve/delve/pull/3568)
- terminal: clear substitute path rules cache when config is used by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3567](https://togithub.com/go-delve/delve/pull/3567)
- service: fix typo in variable name by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[https://github.com/go-delve/delve/pull/3575](https://togithub.com/go-delve/delve/pull/3575)
- TeamCity: remove windows/arm64 builders from chain by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3572](https://togithub.com/go-delve/delve/pull/3572)
- proc: simplify and generalize runtime.mallocgc workaround by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3571](https://togithub.com/go-delve/delve/pull/3571)
- proc/gdbserial: refactor parsing of key-value pairs from gdb protocol
by [@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3574](https://togithub.com/go-delve/delve/pull/3574)
- Extract tip builds into a separate sub-project by
[@&#8203;artspb](https://togithub.com/artspb) in
[https://github.com/go-delve/delve/pull/3578](https://togithub.com/go-delve/delve/pull/3578)
- pkg,service/dap: use switch instead of if-else-if by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[https://github.com/go-delve/delve/pull/3576](https://togithub.com/go-delve/delve/pull/3576)
- CI: update teamcity settings by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[https://github.com/go-delve/delve/pull/3579](https://togithub.com/go-delve/delve/pull/3579)
- pkg/proc: use gore to obtain info from stripped binaries by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[https://github.com/go-delve/delve/pull/3577](https://togithub.com/go-delve/delve/pull/3577)
- add missing import in TeamCity DSL by
[@&#8203;artspb](https://togithub.com/artspb) in
[https://github.com/go-delve/delve/pull/3580](https://togithub.com/go-delve/delve/pull/3580)
- update TeamCity DSL version to 2023.05 and remove tip configurations
from Aggregator by [@&#8203;artspb](https://togithub.com/artspb) in
[https://github.com/go-delve/delve/pull/3581](https://togithub.com/go-delve/delve/pull/3581)
- proc: fix TestIssue1101 flake by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3585](https://togithub.com/go-delve/delve/pull/3585)
- proc: skip trapthread for harcoded breakpoints after manual stop by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3582](https://togithub.com/go-delve/delve/pull/3582)
- tests: fix tests in go1.22 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3583](https://togithub.com/go-delve/delve/pull/3583)
- all: run go mod tidy by
[@&#8203;prattmic](https://togithub.com/prattmic) in
[https://github.com/go-delve/delve/pull/3589](https://togithub.com/go-delve/delve/pull/3589)
- add all branches but PRs to filter by
[@&#8203;artspb](https://togithub.com/artspb) in
[https://github.com/go-delve/delve/pull/3590](https://togithub.com/go-delve/delve/pull/3590)
- service/dap: fix close on closed channel panic by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3573](https://togithub.com/go-delve/delve/pull/3573)
- Show pprof labels in thread names by
[@&#8203;stefanhaller](https://togithub.com/stefanhaller) in
[https://github.com/go-delve/delve/pull/3501](https://togithub.com/go-delve/delve/pull/3501)
- \*: Use forked goretk/gore module by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[https://github.com/go-delve/delve/pull/3597](https://togithub.com/go-delve/delve/pull/3597)
- proc: make some type casts less counterintuitive by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3596](https://togithub.com/go-delve/delve/pull/3596)
- teamcity,version: add 1.22 to supported versions and CI matrix by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3601](https://togithub.com/go-delve/delve/pull/3601)
- proc: fix ppc64 arch name check by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3608](https://togithub.com/go-delve/delve/pull/3608)
- goversion: include pre-releases in VersionAfterOrEqual check by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3607](https://togithub.com/go-delve/delve/pull/3607)
- service/dap: fix close on closed channel by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3609](https://togithub.com/go-delve/delve/pull/3609)
- proc: fix TestPackageRenames on go1.22 on linux/386 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3610](https://togithub.com/go-delve/delve/pull/3610)
- \*: Update gore dep for 1.22 by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[https://github.com/go-delve/delve/pull/3611](https://togithub.com/go-delve/delve/pull/3611)
- \*: release version 1.22.0 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[https://github.com/go-delve/delve/pull/3606](https://togithub.com/go-delve/delve/pull/3606)

#### New Contributors

- [@&#8203;upils](https://togithub.com/upils) made their first
contribution in
[https://github.com/go-delve/delve/pull/3527](https://togithub.com/go-delve/delve/pull/3527)
- [@&#8203;testwill](https://togithub.com/testwill) made their first
contribution in
[https://github.com/go-delve/delve/pull/3562](https://togithub.com/go-delve/delve/pull/3562)
- [@&#8203;prattmic](https://togithub.com/prattmic) made their first
contribution in
[https://github.com/go-delve/delve/pull/3589](https://togithub.com/go-delve/delve/pull/3589)

**Full Changelog**:
go-delve/delve@v1.21.1...v1.22.0
**Curated Changelog**:
https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1220-2023-12-29

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/parca-dev/parca-agent).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

dap: show pprof labels in thread names
6 participants