Files
Android11/external/perfetto/test/trace_processor/heap_graph_flamegraph.sql
2023-10-13 14:01:41 +00:00

16 lines
261 B
SQL

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