blob: 34692efd27ed50838723ba45461d14386c322f95 [file] [log] [blame]
SELECT
id,
depth,
name,
map_name,
count,
cumulative_count,
size,
cumulative_size,
parent_id
FROM experimental_flamegraph
where upid = (select max(upid) from heap_graph_object)
and profile_type = 'graph'
and ts = (select max(graph_sample_ts) from heap_graph_object)
LIMIT 10