Sign in
flutter
/
third_party
/
perfetto
/
ccdcbae1f8f6d1b2ec2122b0c9a3cfab280f390e
/
.
/
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