• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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(
12  (select max(graph_sample_ts) from heap_graph_object),
13  (select max(upid) from heap_graph_object),
14  'graph')
15LIMIT 10
16