1# Copyright (C) 2020 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the License);
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an AS IS BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15module: "android.automotive.watchdog.sysprop"
16owner: Platform
17
18# Interval in seconds between consecutive boot-time performance data collections.
19prop {
20    api_name: "boottimeCollectionInterval"
21    type: Integer
22    scope: Internal
23    access: Readonly
24    prop_name: "ro.carwatchdog.boottime_collection_interval"
25}
26
27# Maximum number of periodically collected records to be cached in memory.
28prop {
29    api_name: "periodicCollectionBufferSize"
30    type: Integer
31    scope: Internal
32    access: Readonly
33    prop_name: "ro.carwatchdog.periodic_collection_buffer_size"
34}
35
36# Interval in seconds between consecutive periodic performance data collections.
37prop {
38    api_name: "periodicCollectionInterval"
39    type: Integer
40    scope: Internal
41    access: Readonly
42    prop_name: "ro.carwatchdog.periodic_collection_interval"
43}
44
45# Maximum number of periodically monitored records to be cached in memory.
46prop {
47    api_name: "periodicMonitorBufferSize"
48    type: Integer
49    scope: Internal
50    access: Readonly
51    prop_name: "ro.carwatchdog.periodic_monitor_buffer_size"
52}
53
54# Interval in seconds between consecutive periodic performance data monitoring.
55prop {
56    api_name: "periodicMonitorInterval"
57    type: Integer
58    scope: Internal
59    access: Readonly
60    prop_name: "ro.carwatchdog.periodic_monitor_interval"
61}
62
63# Top N per-UID statistics/category collected by the performance data collector.
64prop {
65    api_name: "topNStatsPerCategory"
66    type: Integer
67    scope: Internal
68    access: Readonly
69    prop_name: "ro.carwatchdog.top_n_stats_per_category"
70}
71
72# Top N per-process statistics/category collected by the performance data collector.
73prop {
74    api_name: "topNStatsPerSubcategory"
75    type: Integer
76    scope: Internal
77    access: Readonly
78    prop_name: "ro.carwatchdog.top_n_stats_per_subcategory"
79}
80
81# Percentage of I/O overuse threshold.
82prop {
83    api_name: "ioOveruseWarnPercentage"
84    type: Integer
85    scope: Internal
86    access: Readonly
87    prop_name: "ro.carwatchdog.io_overuse_warn_percentage"
88}
89