Sign in
flutter
/
third_party
/
perfetto
/
824be148ce2142dec74c7d4c97343bde40a1ae8d
/
.
/
test
/
trace_processor
/
heap_graph_flamegraph.sql
blob: 92367f91bae178c7b2278f2b41c6e10bbfdd2327 [
file
] [
log
] [
blame
]
SELECT
id
,
depth
,
name
,
map_name
,
count
,
cumulative_count
,
size
,
cumulative_size
,
parent_id
FROM
experimental_flamegraph
(
(
select
max
(
graph_sample_ts
)
from
heap_graph_object
),
(
select
max
(
upid
)
from
heap_graph_object
),
'graph'
)
LIMIT
10