• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1--
2-- Copyright 2022 The Android Open Source Project
3--
4-- Licensed under the Apache License, Version 2.0 (the "License");
5-- you may not use this file except in compliance with the License.
6-- You may obtain a copy of the License at
7--
8--     https://www.apache.org/licenses/LICENSE-2.0
9--
10-- Unless required by applicable law or agreed to in writing, software
11-- distributed under the License is distributed on an "AS IS" BASIS,
12-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-- See the License for the specific language governing permissions and
14-- limitations under the License.
15
16INCLUDE PERFETTO MODULE android.anrs;
17
18DROP VIEW IF EXISTS android_anr_output;
19CREATE PERFETTO VIEW android_anr_output AS
20SELECT
21  AndroidAnrMetric(
22    'anr', (
23      SELECT RepeatedField(
24        AndroidAnrMetric_Anr(
25          'process_name', process_name,
26          'pid', pid,
27          'subject', subject,
28          'error_id', error_id,
29          'ts', ts))
30      FROM android_anrs
31    )
32  );