1SELECT 2 id, 3 depth, 4 name, 5 map_name, 6 count, 7 cumulative_count, 8 size, 9 cumulative_size, 10 parent_id 11FROM experimental_flamegraph 12where upid = (select max(upid) from heap_graph_object) 13 and profile_type = 'graph' 14 and ts = (select max(graph_sample_ts) from heap_graph_object) 15LIMIT 10 16