16 lines
261 B
SQL
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
|