diff options
| author | Paul Buetow <paul@buetow.org> | 2025-03-29 10:27:47 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-03-29 10:27:47 +0200 |
| commit | 5f1b3be8ac4013ac7cf5041de339317defeb75ce (patch) | |
| tree | 3f2df161f6599179c56ca3073cc10ff89a024d1b /internal/flamegraph/worker.go | |
| parent | 525e38ae59ce7a0d3be49ecba94df678f1def409 (diff) | |
add tpsExclude, rename tracepoints to tps
Diffstat (limited to 'internal/flamegraph/worker.go')
| -rw-r--r-- | internal/flamegraph/worker.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/flamegraph/worker.go b/internal/flamegraph/worker.go index 7c8d848..d10e0bf 100644 --- a/internal/flamegraph/worker.go +++ b/internal/flamegraph/worker.go @@ -10,14 +10,14 @@ import ( type worker struct { collapsed collapsed - data iorData + id iorData done chan struct{} } func newWorker() worker { return worker{ collapsed: make(collapsed), // TODO: Retire - data: newIorData(), // TODO: Implement fully + id: newIorData(), // TODO: Implement fully } } |
