summaryrefslogtreecommitdiff
path: root/internal/flamegraph/collapsed.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/flamegraph/collapsed.go')
-rw-r--r--internal/flamegraph/collapsed.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/flamegraph/collapsed.go b/internal/flamegraph/collapsed.go
index 012ea45..57e5ac0 100644
--- a/internal/flamegraph/collapsed.go
+++ b/internal/flamegraph/collapsed.go
@@ -13,7 +13,7 @@ type counter struct {
duration uint64
}
-func (c *counter) merge(other counter) {
+func (c *counter) add(other counter) {
c.count += other.count
c.duration += other.duration
}
@@ -33,7 +33,7 @@ func (c collapsed) merge(other collapsed) (merged int) {
}
for traceId, cnt := range v {
if existingCnt, ok := c[k][traceId]; ok {
- existingCnt.merge(cnt)
+ existingCnt.add(cnt)
merged++
c[k][traceId] = existingCnt
continue