Sign in
flutter
/
third_party
/
perfetto
/
6e345f4e28d3977abe84957a032a1a64ad94789a
/
.
/
test
/
trace_processor
/
counters_where_cpu.sql
blob: e12fa4c5ed3dd0982169a19291fd81ec31c16f73 [
file
] [
log
] [
blame
]
SELECT
ts
,
lead
(
ts
,
1
,
ts
)
OVER
(
PARTITION
BY
name
ORDER
BY
ts
)
-
ts
AS
dur
,
value
FROM
counters
WHERE
ref
=
1
;