summaryrefslogtreecommitdiff
path: root/internal/flamegraph/livetrie.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-05 23:53:01 +0200
committerPaul Buetow <paul@buetow.org>2026-03-05 23:53:01 +0200
commitacd91c7c11658360e0540f9d550f1fe0da167109 (patch)
tree2117c92bb17a1ffa3da8a09f93e614976c2fc375 /internal/flamegraph/livetrie.go
parentf6135befedb7da8603ecff2c59b155effd0183db (diff)
Normalize Go import grouping with local ior section
Diffstat (limited to 'internal/flamegraph/livetrie.go')
-rw-r--r--internal/flamegraph/livetrie.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/flamegraph/livetrie.go b/internal/flamegraph/livetrie.go
index 100e03b..db46af5 100644
--- a/internal/flamegraph/livetrie.go
+++ b/internal/flamegraph/livetrie.go
@@ -3,12 +3,13 @@ package flamegraph
import (
"encoding/json"
"fmt"
- "ior/internal/event"
"slices"
"sort"
"strings"
"sync"
"sync/atomic"
+
+ "ior/internal/event"
)
const liveTrieMinFraction = 0.001