aboutsummaryrefslogtreecommitdiff
path: root/test/trace_processor/heap_graph_flamegraph.sql
blob: 92367f91bae178c7b2278f2b41c6e10bbfdd2327 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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