• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1SELECT
2  id,
3  depth,
4  name,
5  count,
6  cumulative_count,
7  size,
8  cumulative_size,
9  parent_id
10FROM experimental_flamegraph(
11  (select max(graph_sample_ts) from heap_graph_object),
12  (select max(upid) from heap_graph_object),
13  'graph')
14WHERE focus_str = 'left'
15LIMIT 10
16