Skip to content

Commit a1142d3

Browse files
authored
feat(profiling): default to bottom up (getsentry#40924)
Bottom up view highlights long running leaf nodes and makes it easier to identify perf bottlenecks as soon as the page loads and avoids forcing users from investigating the flamechart
1 parent 00571f7 commit a1142d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/app/components/profiling/FrameStack/frameStack.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const FrameStack = memo(function FrameStack(props: FrameStackProps) {
3636
const flamegraphPreferences = useFlamegraphPreferences();
3737
const dispatch = useDispatchFlamegraphState();
3838

39-
const [tab, setTab] = useState<'bottom up' | 'call order'>('call order');
39+
const [tab, setTab] = useState<'bottom up' | 'call order'>('bottom up');
4040
const [treeType, setTreeType] = useState<'all' | 'application' | 'system'>('all');
4141
const [recursion, setRecursion] = useState<'collapsed' | null>(null);
4242

0 commit comments

Comments
 (0)