Skip to content

Commit

Permalink
Merge pull request #511 from getsentry/txiao/chore/fix-typo-in-span-name
Browse files Browse the repository at this point in the history
chore(profiling): Fix typo in span name
  • Loading branch information
Zylphrex authored Sep 4, 2024
2 parents dce8811 + c0ccf5e commit f12a23a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
- Use builtin min/max functions ([#497](https://github.com/getsentry/vroom/pull/497))
- Lift Intervals struct to utils ([#498](https://github.com/getsentry/vroom/pull/498))
- Fix flakey test for profile examples ([#504](https://github.com/getsentry/vroom/pull/504))
- Instrument flamegraph generation with spans ([#510](https://github.com/getsentry/vroom/pull/510))
- Instrument flamegraph generation with spans ([#510](https://github.com/getsentry/vroom/pull/510)), ([#511](https://github.com/getsentry/vroom/pull/511))

## 23.12.0

Expand Down
2 changes: 1 addition & 1 deletion internal/flamegraph/flamegraph.go
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ func GetFlamegraphFromCandidates(

var flamegraphTree []*nodetree.Node

flamegraphSpan := span.StartChild("dispatch candidates")
flamegraphSpan := span.StartChild("processing candidates")

for i := 0; i < numCandidates; i++ {
res := <-results
Expand Down

0 comments on commit f12a23a

Please sign in to comment.