aboutsummaryrefslogtreecommitdiff
path: root/python/perfetto/trace_processor/metrics.descriptor
blob: c337e462d73ad795cfa1870ad1ab437f7f833a40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354


8protos/perfetto/metrics/android/ad_services_metric.protoperfetto.protos"
AdServicesUiMetricQ
%common_service_initialization_latency (R"commonServiceInitializationLatencyT
'common_service_permission_check_latency (R#commonServicePermissionCheckLatencyO
%common_service_ux_engine_flow_latency (R commonServiceUxEngineFlowLatencyC
main_activity_creation_latency (RmainActivityCreationLatencyS
&consent_manager_initialization_latency (R#consentManagerInitializationLatency?
consent_manager_read_latency (RconsentManagerReadLatencyA
consent_manager_write_latency (RconsentManagerWriteLatency"0
AdServicesAdIdMetric
latency (Rlatency"4
AdServicesAppSetIdMetric
latency (Rlatency"
OnDevicePersonalizationMetricU
'managing_service_initialization_latency (R$managingServiceInitializationLatencyP
%service_delegate_execute_flow_latency (R!serviceDelegateExecuteFlowLatencye
0service_delegate_request_surface_package_latency (R+serviceDelegateRequestSurfacePackageLatency_
-service_delegate_register_web_trigger_latency (R(serviceDelegateRegisterWebTriggerLatency"
AdServicesMetric@
	ui_metric (2#.perfetto.protos.AdServicesUiMetricRuiMetricG
ad_id_metric (2%.perfetto.protos.AdServicesAdIdMetricR
adIdMetricT
app_set_id_metric (2).perfetto.protos.AdServicesAppSetIdMetricRappSetIdMetricM

odp_metric (2..perfetto.protos.OnDevicePersonalizationMetricR	odpMetric

2protos/perfetto/metrics/android/android_boot.protoperfetto.protos"p
ProcessStateDurations
	total_dur (RtotalDur:
uninterruptible_sleep_dur (RuninterruptibleSleepDur"
AndroidBootMetric^
system_server_durations (2&.perfetto.protos.ProcessStateDurationsRsystemServerDurationsU
systemui_durations (2&.perfetto.protos.ProcessStateDurationsRsystemuiDurationsU
launcher_durations (2&.perfetto.protos.ProcessStateDurationsRlauncherDurationsK

gms_durations (2&.perfetto.protos.ProcessStateDurationsRgmsDurationsc
launcher_breakdown (24.perfetto.protos.AndroidBootMetric.LauncherBreakdownRlauncherBreakdown
$full_trace_process_start_aggregation (2:.perfetto.protos.AndroidBootMetric.ProcessStartAggregationR fullTraceProcessStartAggregation
#post_boot_process_start_aggregation (2:.perfetto.protos.AndroidBootMetric.ProcessStartAggregationRpostBootProcessStartAggregationz
full_trace_gc_aggregation (2?.perfetto.protos.AndroidBootMetric.GarbageCollectionAggregationRfullTraceGcAggregationx
post_boot_gc_aggregation	 (2?.perfetto.protos.AndroidBootMetric.GarbageCollectionAggregationRpostBootGcAggregation
/post_boot_oom_adjuster_transition_counts_global
 (2>.perfetto.protos.AndroidBootMetric.OomAdjusterTransitionCountsR)postBootOomAdjusterTransitionCountsGlobal
3post_boot_oom_adjuster_transition_counts_by_process (2>.perfetto.protos.AndroidBootMetric.OomAdjusterTransitionCountsR,postBootOomAdjusterTransitionCountsByProcess
:post_boot_oom_adjuster_transition_counts_by_oom_adj_reason (2>.perfetto.protos.AndroidBootMetric.OomAdjusterTransitionCountsR1postBootOomAdjusterTransitionCountsByOomAdjReason
,post_boot_oom_adj_bucket_duration_agg_global
 (2B.perfetto.protos.AndroidBootMetric.OomAdjBucketDurationAggregationR%postBootOomAdjBucketDurationAggGlobal
0post_boot_oom_adj_bucket_duration_agg_by_process (2B.perfetto.protos.AndroidBootMetric.OomAdjBucketDurationAggregationR(postBootOomAdjBucketDurationAggByProcess
post_boot_oom_adj_duration_agg (2<.perfetto.protos.AndroidBootMetric.OomAdjDurationAggregationRpostBootOomAdjDurationAgg9
LauncherBreakdown$
cold_start_dur (RcoldStartDur
ProcessStartAggregation&
total_start_sum (R
totalStartSum(
num_of_processes (RnumOfProcesses,
average_start_time (RaverageStartTime
GarbageCollectionAggregation$
total_gc_count (RtotalGcCount6
num_of_processes_with_gc (RnumOfProcessesWithGc2
num_of_threads_with_gc (RnumOfThreadsWithGc&
avg_gc_duration (R
avgGcDuration5
avg_running_gc_duration (RavgRunningGcDuration"

full_gc_count (RfullGcCountA
collector_transition_gc_count (RcollectorTransitionGcCount$
young_gc_count (RyoungGcCount1
native_alloc_gc_count	 (RnativeAllocGcCount*
explicit_gc_count
 (RexplicitGcCount$
alloc_gc_count (RallocGcCount$
mb_per_ms_of_gc (RmbPerMsOfGc
OomAdjusterTransitionCounts
name (	Rname

src_bucket (	R	srcBucket
dest_bucket (	R
destBucket
count (Rcountj
OomAdjBucketDurationAggregation
name (	Rname
bucket (	Rbucket
	total_dur (RtotalDur
OomAdjDurationAggregation%
min_oom_adj_dur (RminOomAdjDur%
max_oom_adj_dur (RmaxOomAdjDur%
avg_oom_adj_dur (RavgOomAdjDur-
oom_adj_event_count (RoomAdjEventCount$
oom_adj_reason (	RoomAdjReason

?protos/perfetto/metrics/android/app_process_starts_metric.protoperfetto.protos"
AndroidAppProcessStartsMetricV
all_apps (2;.perfetto.protos.AndroidAppProcessStartsMetric.ProcessStartRallAppsm
started_by_broadcast (2;.perfetto.protos.AndroidAppProcessStartsMetric.ProcessStartRstartedByBroadcasti
started_by_service (2;.perfetto.protos.AndroidAppProcessStartsMetric.ProcessStartRstartedByService
ProcessStart!
process_name (	RprocessName
intent (	Rintent
reason (	Rreason$
proc_start_dur (RprocStartDur 
bind_app_dur (R
bindAppDur

intent_dur (R	intentDur
	total_dur (RtotalDur

Mprotos/perfetto/metrics/android/android_garbage_collection_unagg_metric.protoperfetto.protos"
#AndroidGarbageCollectionUnaggMetrich
	gc_events (2K.perfetto.protos.AndroidGarbageCollectionUnaggMetric.GarbageCollectionEventRgcEvents
GarbageCollectionEvent
thread_name (	R
threadName!
process_name (	RprocessName
gc_type (	RgcType&
is_mark_compact (R
isMarkCompact!
reclaimed_mb (RreclaimedMb
min_heap_mb (R	minHeapMb
max_heap_mb (R	maxHeapMb3
mb_per_ms_of_running_gc (RmbPerMsOfRunningGc-
mb_per_ms_of_wall_gc	 (RmbPerMsOfWallGc
gc_dur
 (RgcDur$
gc_running_dur (RgcRunningDur&
gc_runnable_dur (R
gcRunnableDur%
gc_unint_io_dur
 (RgcUnintIoDur,
gc_unint_non_io_dur (RgcUnintNonIoDur

gc_int_dur (RgcIntDur
gc_ts (RgcTs
pid (Rpid
tid (Rtid(
gc_monotonic_dur (RgcMonotonicDur

8protos/perfetto/metrics/android/android_boot_unagg.protoperfetto.protos?protos/perfetto/metrics/android/app_process_starts_metric.protoMprotos/perfetto/metrics/android/android_garbage_collection_unagg_metric.proto"
AndroidBootUnaggv
 android_app_process_start_metric (2..perfetto.protos.AndroidAppProcessStartsMetricRandroidAppProcessStartMetricr
android_post_boot_gc_metric (24.perfetto.protos.AndroidGarbageCollectionUnaggMetricRandroidPostBootGcMetric

Nprotos/perfetto/metrics/android/sysui_slice_performance_statistical_data.protoperfetto.protos"
$SysUiSlicePerformanceStatisticalData
name (	Rname
cnt (Rcnt

avg_dur_ms (RavgDurMs

max_dur_ms (RmaxDurMs

avg_dur_ns (RavgDurNs

max_dur_ns (RmaxDurNs

Kprotos/perfetto/metrics/android/sysui_notif_shade_list_builder_metric.protoperfetto.protosNprotos/perfetto/metrics/android/sysui_slice_performance_statistical_data.proto"
 SysuiNotifShadeListBuilderMetrick
all_slices_performance (25.perfetto.protos.SysUiSlicePerformanceStatisticalDataRallSlicesPerformance
!slices_with_inflation_performance (25.perfetto.protos.SysUiSlicePerformanceStatisticalDataRslicesWithInflationPerformance
$slices_with_modification_performance (25.perfetto.protos.SysUiSlicePerformanceStatisticalDataR!slicesWithModificationPerformanceU
slice (2?.perfetto.protos.SysuiNotifShadeListBuilderMetric.SliceDurationRsliceQ

SliceDuration
name (	Rname
dur_ms (RdurMs
dur_ns (RdurNs

Rprotos/perfetto/metrics/android/sysui_update_notif_on_ui_mode_changed_metric.protoperfetto.protosNprotos/perfetto/metrics/android/sysui_slice_performance_statistical_data.proto"
%SysuiUpdateNotifOnUiModeChangedMetrick
all_slices_performance (25.perfetto.protos.SysUiSlicePerformanceStatisticalDataRallSlicesPerformanceZ
slice (2D.perfetto.protos.SysuiUpdateNotifOnUiModeChangedMetric.SliceDurationRsliceQ

SliceDuration
name (	Rname
dur_ms (RdurMs
dur_ns (RdurNs

6protos/perfetto/metrics/android/process_metadata.protoperfetto.protos"
AndroidProcessMetadata
name (	Rname
uid (RuidI
package (2/.perfetto.protos.AndroidProcessMetadata.PackageRpackageY
packages_for_uid (2/.perfetto.protos.AndroidProcessMetadata.PackageRpackagesForUid
pid	 (Rpidv
Package!
package_name (	RpackageName(
apk_version_code (RapkVersionCode

debuggable (R
debuggableJJJJ

Cprotos/perfetto/metrics/android/android_frame_timeline_metric.protoperfetto.protos6protos/perfetto/metrics/android/process_metadata.proto"
AndroidFrameTimelineMetric!
total_frames (RtotalFrames*
missed_app_frames (RmissedAppFrames%
dropped_frames (R
droppedFramesV
process (2<.perfetto.protos.AndroidFrameTimelineMetric.ProcessBreakdownRprocessY

jank_types (2:.perfetto.protos.AndroidFrameTimelineMetric.JankTypeMetricR	jankTypes
JankTypeMetric
type (	Rtype
total_count (R
totalCount:
present_unspecified_count (RpresentUnspecifiedCount1
present_on_time_count (RpresentOnTimeCount,
present_late_count (RpresentLateCount.
present_early_count (RpresentEarlyCount2
present_dropped_count (RpresentDroppedCount2
present_unknown_count (RpresentUnknownCount
ProcessBreakdownA
process (2'.perfetto.protos.AndroidProcessMetadataRprocess!
total_frames (RtotalFrames#

missed_frames (RmissedFrames*
missed_app_frames (RmissedAppFrames(
missed_sf_frames (RmissedSfFrames"

frame_dur_max (RframeDurMax"

frame_dur_avg	 (RframeDurAvg"

frame_dur_p50
 (RframeDurP50"

frame_dur_p90 (RframeDurP90"

frame_dur_p95 (RframeDurP95"

frame_dur_p99
 (RframeDurP99'
frame_dur_ms_p50 (R
frameDurMsP50'
frame_dur_ms_p90 (R
frameDurMsP90'
frame_dur_ms_p95 (R
frameDurMsP95'
frame_dur_ms_p99 (R
frameDurMsP99%
dropped_frames (R
droppedFramesY

jank_types (2:.perfetto.protos.AndroidFrameTimelineMetric.JankTypeMetricR	jankTypesJJJ

0protos/perfetto/metrics/android/anr_metric.protoperfetto.protos"
AndroidAnrMetric7
anr (2%.perfetto.protos.AndroidAnrMetric.AnrRanr
Anr
error_id (	RerrorId!
process_name (	RprocessName
pid (Rpid
subject (	Rsubject
ts (Rts

1protos/perfetto/metrics/android/batt_metric.protoperfetto.protos"
AndroidBatteryMetric`
battery_counters (25.perfetto.protos.AndroidBatteryMetric.BatteryCountersRbatteryCountersf
battery_aggregates (27.perfetto.protos.AndroidBatteryMetric.BatteryAggregatesRbatteryAggregatesZ
suspend_period (23.perfetto.protos.AndroidBatteryMetric.SuspendPeriodR
suspendPeriod
BatteryCounters!
timestamp_ns (RtimestampNs,
charge_counter_uah (RchargeCounterUah)
capacity_percent (RcapacityPercent

current_ua (R	currentUa$
current_avg_ua (RcurrentAvgUa
BatteryAggregates-
total_screen_off_ns (RtotalScreenOffNs+
total_screen_on_ns (RtotalScreenOnNs/
total_screen_doze_ns (RtotalScreenDozeNs*
total_wakelock_ns (RtotalWakelockNs
sleep_ns (RsleepNs-
sleep_screen_off_ns (RsleepScreenOffNs+
sleep_screen_on_ns (RsleepScreenOnNs/
sleep_screen_doze_ns (RsleepScreenDozeNsS

SuspendPeriod!
timestamp_ns (RtimestampNs
duration_ns (R
durationNs

;protos/perfetto/metrics/android/android_blocking_call.protoperfetto.protos"
AndroidBlockingCall
name (	Rname
cnt (Rcnt 
total_dur_ms (R
totalDurMs

max_dur_ms (RmaxDurMs

min_dur_ms (RminDurMs 
total_dur_ns (R
totalDurNs

max_dur_ns (RmaxDurNs

min_dur_ns (RminDurNs

Wprotos/perfetto/metrics/android/android_sysui_notifications_blocking_calls_metric.protoperfetto.protos;protos/perfetto/metrics/android/android_blocking_call.proto"{
,AndroidSysUINotificationsBlockingCallsMetricK
blocking_calls (2$.perfetto.protos.AndroidBlockingCallR
blockingCalls

Gprotos/perfetto/metrics/android/android_blocking_calls_cuj_metric.protoperfetto.protos;protos/perfetto/metrics/android/android_blocking_call.proto6protos/perfetto/metrics/android/process_metadata.proto"
AndroidBlockingCallsCujMetricD
cuj (22.perfetto.protos.AndroidBlockingCallsCujMetric.CujRcuj
Cuj
id (Rid
name (	RnameA
process (2'.perfetto.protos.AndroidProcessMetadataRprocess
ts (Rts
dur (RdurK
blocking_calls (2$.perfetto.protos.AndroidBlockingCallR
blockingCalls

Bprotos/perfetto/metrics/android/android_blocking_calls_unagg.protoperfetto.protos;protos/perfetto/metrics/android/android_blocking_call.proto6protos/perfetto/metrics/android/process_metadata.proto"
AndroidBlockingCallsUnagg
process_with_blocking_calls (2C.perfetto.protos.AndroidBlockingCallsUnagg.ProcessWithBlockingCallsRprocessWithBlockingCalls
ProcessWithBlockingCallsA
process (2'.perfetto.protos.AndroidProcessMetadataRprocessK
blocking_calls (2$.perfetto.protos.AndroidBlockingCallR
blockingCalls
	
0protos/perfetto/metrics/android/cpu_metric.protoperfetto.protos6protos/perfetto/metrics/android/process_metadata.proto"
AndroidCpuMetricL
process_info (2).perfetto.protos.AndroidCpuMetric.ProcessRprocessInfo
Metrics
mcycles (Rmcycles

runtime_ns (R	runtimeNs 
min_freq_khz (R
minFreqKhz 
max_freq_khz (R
maxFreqKhz 
avg_freq_khz (R
avgFreqKhze
CoreData
id (
RidC
metrics (2).perfetto.protos.AndroidCpuMetric.MetricsRmetricsJg
CoreTypeData
type (	RtypeC
metrics (2).perfetto.protos.AndroidCpuMetric.MetricsRmetrics
Thread
name (	RnameC
metrics (2).perfetto.protos.AndroidCpuMetric.MetricsRmetrics>
core (2*.perfetto.protos.AndroidCpuMetric.CoreDataRcoreK
	core_type (2..perfetto.protos.AndroidCpuMetric.CoreTypeDataRcoreTypeJ
Process
name (	RnameA
process (2'.perfetto.protos.AndroidProcessMetadataRprocessC
metrics (2).perfetto.protos.AndroidCpuMetric.MetricsRmetricsB
threads (2(.perfetto.protos.AndroidCpuMetric.ThreadRthreads>
core (2*.perfetto.protos.AndroidCpuMetric.CoreDataRcoreK
	core_type (2..perfetto.protos.AndroidCpuMetric.CoreTypeDataRcoreTypeJ

3protos/perfetto/metrics/android/codec_metrics.protoperfetto.protos0protos/perfetto/metrics/android/cpu_metric.proto"
AndroidCodecMetricsJ
	cpu_usage (2-.perfetto.protos.AndroidCodecMetrics.CpuUsageRcpuUsageY
codec_function (22.perfetto.protos.AndroidCodecMetrics.CodecFunctionR
codecFunctionq
Detail
thread_name (	R
threadName 
total_cpu_ns (R
totalCpuNs$
running_cpu_ns (RrunningCpuNs

CodecFunction!
codec_string (	RcodecString!
process_name (	RprocessNameC
detail (2+.perfetto.protos.AndroidCodecMetrics.DetailRdetail
CpuUsage!
process_name (	RprocessName
thread_name (	R
threadName"

thread_cpu_ns (RthreadCpuNs
num_threads (
R
numThreadsK
	core_data (2..perfetto.protos.AndroidCpuMetric.CoreTypeDataRcoreDataJ

3protos/perfetto/metrics/android/camera_metric.protoperfetto.protos"
AndroidCameraMetricQ
gc_rss_and_dma (2,.perfetto.protos.AndroidCameraMetric.CounterRgcRssAndDma?
Counter
min (Rmin
max (Rmax
avg (Ravg

9protos/perfetto/metrics/android/camera_unagg_metric.protoperfetto.protos"
AndroidCameraUnaggregatedMetric[
gc_rss_and_dma (26.perfetto.protos.AndroidCameraUnaggregatedMetric.ValueRgcRssAndDma
Value
ts (Rts
gca_rss_val (R	gcaRssVal
hal_rss_val (R	halRssVal0
cameraserver_rss_val (RcameraserverRssVal
dma_val (RdmaVal
value (Rvalue

5protos/perfetto/metrics/android/display_metrics.protoperfetto.protos"
AndroidDisplayMetrics4
total_duplicate_frames (
RtotalDuplicateFrames6
duplicate_frames_logged (
RduplicateFramesLogged7
total_dpu_underrun_count (
RtotalDpuUnderrunCount2
refresh_rate_switches (
RrefreshRateSwitchesd
refresh_rate_stats (26.perfetto.protos.AndroidDisplayMetrics.RefreshRateStatRrefreshRateStatse
update_power_state (27.perfetto.protos.AndroidDisplayMetrics.UpdatePowerStateRupdatePowerState
RefreshRateStat(
refresh_rate_fps (
RrefreshRateFps
count (
Rcount 
total_dur_ms (R
totalDurMs

avg_dur_ms (RavgDurMsM
UpdatePowerState3
avg_runtime_micro_secs (
RavgRuntimeMicroSecsJ

5protos/perfetto/metrics/android/dma_heap_metric.protoperfetto.protos"
AndroidDmaHeapMetric$
avg_size_bytes (RavgSizeBytes$
min_size_bytes (RminSizeBytes$
max_size_bytes (RmaxSizeBytes3
total_alloc_size_bytes (RtotalAllocSizeBytes

1protos/perfetto/metrics/android/dvfs_metric.protoperfetto.protos"
AndroidDvfsMetric`
freq_residencies (25.perfetto.protos.AndroidDvfsMetric.FrequencyResidencyRfreqResidenciesj
BandStat

freq_value (R	freqValue

percentage (R
percentage
duration_ns (R
durationNs{
FrequencyResidency
	freq_name (	RfreqNameH
	band_stat (2+.perfetto.protos.AndroidDvfsMetric.BandStatRbandStat

4protos/perfetto/metrics/android/fastrpc_metric.protoperfetto.protos"
AndroidFastrpcMetricM
	subsystem (2/.perfetto.protos.AndroidFastrpcMetric.SubsystemR	subsystem
	Subsystem
name (	Rname$
avg_size_bytes (RavgSizeBytes$
min_size_bytes (RminSizeBytes$
max_size_bytes (RmaxSizeBytes3
total_alloc_size_bytes (RtotalAllocSizeBytes

0protos/perfetto/metrics/android/g2d_metric.protoperfetto.protos"

G2dMetrics<
g2d_hw (2%.perfetto.protos.G2dMetrics.G2dMetricRg2dHw<
g2d_sw (2%.perfetto.protos.G2dMetrics.G2dMetricRg2dSw
G2dInstance
name (	Rname
frame_count (
R
frameCount
error_count (
R
errorCount

max_dur_ms (RmaxDurMs

min_dur_ms (RminDurMs

avg_dur_ms	 (RavgDurMsJ
	G2dMetricE
	instances (2'.perfetto.protos.G2dMetrics.G2dInstanceR	instances
frame_count (
R
frameCount
error_count (
R
errorCount

max_dur_ms (RmaxDurMs

min_dur_ms (RminDurMs

avg_dur_ms	 (RavgDurMsJ

0protos/perfetto/metrics/android/gpu_metric.protoperfetto.protos"
AndroidGpuMetricG
	processes (2).perfetto.protos.AndroidGpuMetric.ProcessR	processes
mem_max (RmemMax
mem_min (RmemMin
mem_avg (RmemAvgT
freq_metrics (21.perfetto.protos.AndroidGpuMetric.FrequencyMetricRfreqMetricsh
Process
name (	Rname
mem_max (RmemMax
mem_min (RmemMin
mem_avg (RmemAvg
FrequencyMetric
gpu_id (
RgpuId
freq_max (RfreqMax
freq_min (RfreqMin
freq_avg (RfreqAvgd

used_freqs (2E.perfetto.protos.AndroidGpuMetric.FrequencyMetric.MetricsPerFrequencyR	usedFreqs`
MetricsPerFrequency
freq (Rfreq
dur_ms (RdurMs

percentage (R
percentage

0protos/perfetto/metrics/android/hwcomposer.protoperfetto.protos"
AndroidHwcomposerMetrics8
composition_total_layers (RcompositionTotalLayers4
composition_dpu_layers (RcompositionDpuLayers4
composition_gpu_layers (RcompositionGpuLayersA
composition_dpu_cached_layers (RcompositionDpuCachedLayers?
composition_sf_cached_layers (RcompositionSfCachedLayers4
composition_rcd_layers (RcompositionRcdLayers8
skipped_validation_count (RskippedValidationCount<
unskipped_validation_count (RunskippedValidationCount<
separated_validation_count (RseparatedValidationCount8
unknown_validation_count	 (RunknownValidationCount8
avg_all_execution_time_ms
 (RavgAllExecutionTimeMs@
avg_skipped_execution_time_ms (RavgSkippedExecutionTimeMsD
avg_unskipped_execution_time_ms (RavgUnskippedExecutionTimeMsD
avg_separated_execution_time_ms
 (RavgSeparatedExecutionTimeMsb
dpu_vote_metrics (28.perfetto.protos.AndroidHwcomposerMetrics.DpuVoteMetricsRdpuVoteMetricsk
metrics_per_display (2;.perfetto.protos.AndroidHwcomposerMetrics.MetricsPerDisplayRmetricsPerDisplay
DpuVoteMetrics
tid (
Rtid+
avg_dpu_vote_clock (RavgDpuVoteClock,
avg_dpu_vote_avg_bw (RavgDpuVoteAvgBw.
avg_dpu_vote_peak_bw (RavgDpuVotePeakBw*
avg_dpu_vote_rt_bw (RavgDpuVoteRtBw
MetricsPerDisplay

display_id (	R	displayId8
composition_total_layers (RcompositionTotalLayers4
composition_dpu_layers (RcompositionDpuLayers4
composition_gpu_layers (RcompositionGpuLayersA
composition_dpu_cached_layers (RcompositionDpuCachedLayers?
composition_sf_cached_layers (RcompositionSfCachedLayers4
composition_rcd_layers (RcompositionRcdLayers8
skipped_validation_count (RskippedValidationCount<
unskipped_validation_count	 (RunskippedValidationCount<
separated_validation_count
 (RseparatedValidationCount8
unknown_validation_count (RunknownValidationCount8
avg_all_execution_time_ms (RavgAllExecutionTimeMs@
avg_skipped_execution_time_ms
 (RavgSkippedExecutionTimeMsD
avg_unskipped_execution_time_ms (RavgUnskippedExecutionTimeMsD
avg_separated_execution_time_ms (RavgSeparatedExecutionTimeMs

1protos/perfetto/metrics/android/hwui_metric.protoperfetto.protos"
ProcessRenderInfo!
process_name (	RprocessName#
rt_cpu_time_ms (RrtCpuTimeMs(
draw_frame_count (
RdrawFrameCount$
draw_frame_max (RdrawFrameMax$
draw_frame_min (RdrawFrameMin$
draw_frame_avg (RdrawFrameAvg
flush_count (
R
flushCount
	flush_max (RflushMax
	flush_min	 (RflushMin
	flush_avg
 (RflushAvg,
prepare_tree_count (
RprepareTreeCount(
prepare_tree_max (RprepareTreeMax(
prepare_tree_min
 (RprepareTreeMin(
prepare_tree_avg (RprepareTreeAvg0
gpu_completion_count (
RgpuCompletionCount,
gpu_completion_max (RgpuCompletionMax,
gpu_completion_min (RgpuCompletionMin,
gpu_completion_avg (RgpuCompletionAvg&
ui_record_count (
R
uiRecordCount"

ui_record_max (RuiRecordMax"

ui_record_min (RuiRecordMin"

ui_record_avg (RuiRecordAvg0
shader_compile_count (
RshaderCompileCount.
shader_compile_time (RshaderCompileTime,
shader_compile_avg (RshaderCompileAvg&
cache_hit_count (
R
cacheHitCount$
cache_hit_time (RcacheHitTime"

cache_hit_avg (RcacheHitAvg(
cache_miss_count (
RcacheMissCount&
cache_miss_time (R
cacheMissTime$
cache_miss_avg (RcacheMissAvg/
graphics_cpu_mem_max  (RgraphicsCpuMemMax/
graphics_cpu_mem_min! (RgraphicsCpuMemMin/
graphics_cpu_mem_avg" (RgraphicsCpuMemAvg/
graphics_gpu_mem_max# (RgraphicsGpuMemMax/
graphics_gpu_mem_min$ (RgraphicsGpuMemMin/
graphics_gpu_mem_avg% (RgraphicsGpuMemAvg&
texture_mem_max& (R
textureMemMax&
texture_mem_min' (R
textureMemMin&
texture_mem_avg( (R
textureMemAvg
all_mem_max) (R	allMemMax
all_mem_min* (R	allMemMin
all_mem_avg+ (R	allMemAvg"Z
AndroidHwuiMetricE
process_info (2".perfetto.protos.ProcessRenderInfoRprocessInfo

/protos/perfetto/metrics/android/io_metric.protoperfetto.protos"
	AndroidIoY
f2fs_counter_stats (2+.perfetto.protos.AndroidIo.F2fsCounterStatsRf2fsCounterStatsS
f2fs_write_stats (2).perfetto.protos.AndroidIo.F2fsWriteStatsRf2fsWriteStats
F2fsCounterStats
name (	Rname
max (Rmax
sum (Rsum
min (Rmin
dur (Rdur
count (Rcount
avg (Ravg
F2fsWriteStats*
total_write_count (RtotalWriteCount-
distinct_processes (RdistinctProcesses.
total_bytes_written (RtotalBytesWritten2
distinct_device_count (RdistinctDeviceCount0
distinct_inode_count (RdistinctInodeCount2
distinct_thread_count (RdistinctThreadCount

5protos/perfetto/metrics/android/io_unagg_metric.protoperfetto.protos"
AndroidIoUnaggregated
f2fs_write_unaggregated_stats (2A.perfetto.protos.AndroidIoUnaggregated.F2fsWriteUnaggreagatedStatRf2fsWriteUnaggregatedStats
F2fsWriteUnaggreagatedStat
tid (
Rtid
thread_name (	R
threadName
pid (
Rpid!
process_name (	RprocessName
ino (Rino
dev (Rdev

0protos/perfetto/metrics/android/ion_metric.protoperfetto.protos"
AndroidIonMetric@
buffer (2(.perfetto.protos.AndroidIonMetric.BufferRbuffer
Buffer
name (	Rname$
avg_size_bytes (RavgSizeBytes$
min_size_bytes (RminSizeBytes$
max_size_bytes (RmaxSizeBytes3
total_alloc_size_bytes (RtotalAllocSizeBytes

8protos/perfetto/metrics/android/irq_runtime_metric.protoperfetto.protos"
AndroidIrqRuntimeMetricP
hw_irq (29.perfetto.protos.AndroidIrqRuntimeMetric.IrqRuntimeMetricRhwIrqP
sw_irq (29.perfetto.protos.AndroidIrqRuntimeMetric.IrqRuntimeMetricRswIrqG
IrqSlice
irq_name (	RirqName
ts (Rts
dur (Rdur
ThresholdMetric
	threshold (	R	threshold0
over_threshold_count (RoverThresholdCount#

anomaly_ratio (RanomalyRatio
IrqRuntimeMetric
max_runtime (R
maxRuntime
total_count (R
totalCountc
threshold_metric (28.perfetto.protos.AndroidIrqRuntimeMetric.ThresholdMetricRthresholdMetric_
longest_irq_slices (21.perfetto.protos.AndroidIrqRuntimeMetric.IrqSliceRlongestIrqSlices

5protos/perfetto/metrics/android/jank_cuj_metric.protoperfetto.protos6protos/perfetto/metrics/android/process_metadata.proto"
AndroidJankCujMetric;
cuj (2).perfetto.protos.AndroidJankCujMetric.CujRcuj
Cuj
id (Rid
name (	RnameA
process (2'.perfetto.protos.AndroidProcessMetadataRprocess
ts (Rts
dur (RdurA
frame (2+.perfetto.protos.AndroidJankCujMetric.FrameRframeF
sf_frame
 (2+.perfetto.protos.AndroidJankCujMetric.FrameRsfFrameV
counter_metrics (2-.perfetto.protos.AndroidJankCujMetric.MetricsRcounterMetricsX
timeline_metrics (2-.perfetto.protos.AndroidJankCujMetric.MetricsRtimelineMetricsR

trace_metrics	 (2-.perfetto.protos.AndroidJankCujMetric.MetricsRtraceMetrics

layer_name (	R	layerName
Frame!
frame_number (RframeNumber
vsync (Rvsync
ts (Rts
dur (Rdur!
dur_expected (RdurExpected

app_missed (R	appMissed
	sf_missed (RsfMissed,
sf_callback_missed (RsfCallbackMissed0
hwui_callback_missed	 (RhwuiCallbackMissed
Metrics!
total_frames (RtotalFrames#

missed_frames (RmissedFrames*
missed_app_frames (RmissedAppFrames(
missed_sf_frames (RmissedSfFrames?
missed_frames_max_successive (RmissedFramesMaxSuccessive"

frame_dur_max (RframeDurMax"

frame_dur_avg (RframeDurAvg"

frame_dur_p50 (RframeDurP50"

frame_dur_p90	 (RframeDurP90"

frame_dur_p95
 (RframeDurP95"

frame_dur_p99 (RframeDurP99'
frame_dur_ms_p50 (R
frameDurMsP50'
frame_dur_ms_p90
 (R
frameDurMsP90'
frame_dur_ms_p95 (R
frameDurMsP95'
frame_dur_ms_p99 (R
frameDurMsP999
sf_callback_missed_frames (RsfCallbackMissedFrames=
hwui_callback_missed_frames (RhwuiCallbackMissedFrames

9protos/perfetto/metrics/android/java_heap_histogram.protoperfetto.protos6protos/perfetto/metrics/android/process_metadata.proto"
JavaHeapHistogramW
instance_stats (20.perfetto.protos.JavaHeapHistogram.InstanceStatsR
instanceStats
	TypeCount
	type_name (	RtypeName
category (	Rcategory
	obj_count (
RobjCount.
reachable_obj_count (
RreachableObjCount
size_kb (
RsizeKb*
reachable_size_kb (
RreachableSizeKb$
native_size_kb (
RnativeSizeKb7
reachable_native_size_kb (
RreachableNativeSizeKbe
Sample
ts (RtsK

type_count (2,.perfetto.protos.JavaHeapHistogram.TypeCountR	typeCount

InstanceStats
upid (
RupidA
process (2'.perfetto.protos.AndroidProcessMetadataRprocessC
samples (2).perfetto.protos.JavaHeapHistogram.SampleRsamples

5protos/perfetto/metrics/android/java_heap_stats.protoperfetto.protos6protos/perfetto/metrics/android/process_metadata.proto"

JavaHeapStatsS
instance_stats (2,.perfetto.protos.JavaHeapStats.InstanceStatsR
instanceStatsb
	HeapRoots
	root_type (	RrootType
	type_name (	RtypeName
	obj_count (RobjCount
Sample
ts (Rts
	heap_size (RheapSize(
heap_native_size (RheapNativeSize
	obj_count (RobjCount.
reachable_heap_size (RreachableHeapSize;
reachable_heap_native_size	 (RreachableHeapNativeSize.
reachable_obj_count (RreachableObjCount2
anon_rss_and_swap_size (RanonRssAndSwapSize>
roots (2(.perfetto.protos.JavaHeapStats.HeapRootsRroots"

oom_score_adj
 (RoomScoreAdj*
process_uptime_ms (RprocessUptimeMs

InstanceStats
upid (
RupidA
process (2'.perfetto.protos.AndroidProcessMetadataRprocess?
samples (2%.perfetto.protos.JavaHeapStats.SampleRsamples

0protos/perfetto/metrics/android/lmk_metric.protoperfetto.protos"
AndroidLmkMetric
total_count (R
totalCountN
by_oom_score (2,.perfetto.protos.AndroidLmkMetric.ByOomScoreR
byOomScore(
oom_victim_count (RoomVictimCountF

ByOomScore"

oom_score_adj (RoomScoreAdj
count (Rcount

7protos/perfetto/metrics/android/lmk_reason_metric.protoperfetto.protos6protos/perfetto/metrics/android/process_metadata.proto"
AndroidLmkReasonMetric?
lmks (2+.perfetto.protos.AndroidLmkReasonMetric.LmkRlmks
ProcessA
process (2'.perfetto.protos.AndroidProcessMetadataRprocess"

oom_score_adj (RoomScoreAdj
size (Rsize$
file_rss_bytes (RfileRssBytes$
anon_rss_bytes (RanonRssBytes&
shmem_rss_bytes (R
shmemRssBytes

swap_bytes (R	swapBytes
Lmk"

oom_score_adj (RoomScoreAdj&
ion_heaps_bytes (R
ionHeapsBytes/
system_ion_heap_size (RsystemIonHeapSizeM
	processes (2/.perfetto.protos.AndroidLmkReasonMetric.ProcessR	processes

0protos/perfetto/metrics/android/mem_metric.protoperfetto.protos"
AndroidMemoryMetric\
process_metrics (23.perfetto.protos.AndroidMemoryMetric.ProcessMetricsRprocessMetrics
ProcessMetrics!
process_name (	RprocessNamea
total_counters (2:.perfetto.protos.AndroidMemoryMetric.ProcessMemoryCountersR
totalCounterse
priority_breakdown (26.perfetto.protos.AndroidMemoryMetric.PriorityBreakdownRpriorityBreakdown
PriorityBreakdown
priority (	RpriorityV
counters (2:.perfetto.protos.AndroidMemoryMetric.ProcessMemoryCountersRcounters
ProcessMemoryCountersG
anon_rss (2,.perfetto.protos.AndroidMemoryMetric.CounterRanonRssG
file_rss (2,.perfetto.protos.AndroidMemoryMetric.CounterRfileRss@
swap (2,.perfetto.protos.AndroidMemoryMetric.CounterRswapP

anon_and_swap (2,.perfetto.protos.AndroidMemoryMetric.CounterRanonAndSwapI
	java_heap (2,.perfetto.protos.AndroidMemoryMetric.CounterRjavaHeapU
Counter
min (Rmin
max (Rmax
avg (Ravg
delta (Rdelta

6protos/perfetto/metrics/android/mem_unagg_metric.protoperfetto.protos"
AndroidMemoryUnaggregatedMetrice
process_values (2>.perfetto.protos.AndroidMemoryUnaggregatedMetric.ProcessValuesR
processValues

ProcessValues!
process_name (	RprocessNamec

mem_values (2D.perfetto.protos.AndroidMemoryUnaggregatedMetric.ProcessMemoryValuesR	memValues
ProcessMemoryValuesQ
anon_rss (26.perfetto.protos.AndroidMemoryUnaggregatedMetric.ValueRanonRssQ
file_rss (26.perfetto.protos.AndroidMemoryUnaggregatedMetric.ValueRfileRssJ
swap (26.perfetto.protos.AndroidMemoryUnaggregatedMetric.ValueRswapZ

anon_and_swap (26.perfetto.protos.AndroidMemoryUnaggregatedMetric.ValueRanonAndSwapJ
Value
ts (Rts
	oom_score (RoomScore
value (Rvalue

6protos/perfetto/metrics/android/multiuser_metric.protoperfetto.protos"
AndroidMultiuserMetricR
user_switch (21.perfetto.protos.AndroidMultiuserMetric.EventDataR
userSwitch
	EventData
duration_ms (R
durationMsW
	cpu_usage (2:.perfetto.protos.AndroidMultiuserMetric.EventData.CpuUsageRcpuUsage
CpuUsage
user_id (RuserId!
process_name (	RprocessName
cpu_mcycles (R
cpuMcycles%
cpu_percentage (R
cpuPercentage

identifier (	R
identifier

4protos/perfetto/metrics/android/network_metric.protoperfetto.protos"
AndroidNetworkMetricP
net_devices (2/.perfetto.protos.AndroidNetworkMetric.NetDeviceR
netDevicesU

net_rx_action (21.perfetto.protos.AndroidNetworkMetric.NetRxActionRnetRxAction/
retransmission_rate (RretransmissionRate$
kfree_skb_rate (RkfreeSkbRateU

net_tx_action (21.perfetto.protos.AndroidNetworkMetric.NetTxActionRnetTxActionN

ipi_action (2/.perfetto.protos.AndroidNetworkMetric.IpiActionR	ipiAction
PacketStatistic
packets (Rpackets
bytes (Rbytes9
first_packet_timestamp_ns (RfirstPacketTimestampNs7
last_packet_timestamp_ns (RlastPacketTimestampNs
interval_ns (R
intervalNs$
data_rate_kbps (RdataRateKbps
CorePacketStatistic
id (
Rid`
packet_statistic (25.perfetto.protos.AndroidNetworkMetric.PacketStatisticRpacketStatistic
RxK
total (25.perfetto.protos.AndroidNetworkMetric.PacketStatisticRtotalM
core (29.perfetto.protos.AndroidNetworkMetric.CorePacketStatisticRcore2
gro_aggregation_ratio (	RgroAggregationRatio
TxK
total (25.perfetto.protos.AndroidNetworkMetric.PacketStatisticRtotalM
core (29.perfetto.protos.AndroidNetworkMetric.CorePacketStatisticRcore
	NetDevice
name (	Rname8
rx (2(.perfetto.protos.AndroidNetworkMetric.RxRrx8
tx (2(.perfetto.protos.AndroidNetworkMetric.TxRtx
NetRxActionStatistic
count (Rcount

runtime_ms (R	runtimeMs$
avg_runtime_ms (RavgRuntimeMs
mcycles (Rmcycles 
avg_freq_khz (R
avgFreqKhz
NetTxActionStatistic
count (Rcount

runtime_ms (R	runtimeMs$
avg_runtime_ms (RavgRuntimeMs
mcycles (Rmcycles 
avg_freq_khz (R
avgFreqKhzo
IpiActionStatistic
count (Rcount

runtime_ms (R	runtimeMs$
avg_runtime_ms (RavgRuntimeMs
CoreNetRxActionStatistic
id (
Ridq
net_rx_action_statistic (2:.perfetto.protos.AndroidNetworkMetric.NetRxActionStatisticRnetRxActionStatistic
CoreNetTxActionStatistic
id (
Ridq
net_tx_action_statistic (2:.perfetto.protos.AndroidNetworkMetric.NetTxActionStatisticRnetTxActionStatistic
NetRxActionP
total (2:.perfetto.protos.AndroidNetworkMetric.NetRxActionStatisticRtotalR
core (2>.perfetto.protos.AndroidNetworkMetric.CoreNetRxActionStatisticRcore9
avg_interstack_latency_ms (RavgInterstackLatencyMs
NetTxActionP
total (2:.perfetto.protos.AndroidNetworkMetric.NetTxActionStatisticRtotalR
core (2>.perfetto.protos.AndroidNetworkMetric.CoreNetTxActionStatisticRcore[
	IpiActionN
total (28.perfetto.protos.AndroidNetworkMetric.IpiActionStatisticRtotal

2protos/perfetto/metrics/android/other_traces.protoperfetto.protos"N
AndroidOtherTracesMetric2
finalized_traces_uuid (	RfinalizedTracesUuid

2protos/perfetto/metrics/android/package_list.protoperfetto.protos"
AndroidPackageListG
packages (2+.perfetto.protos.AndroidPackageList.PackageRpackagesa
Package!
package_name (	RpackageName
uid (Ruid!
version_code (RversionCode

5protos/perfetto/metrics/android/powrails_metric.protoperfetto.protos"
AndroidPowerRailsN
power_rails (2-.perfetto.protos.AndroidPowerRails.PowerRailsR
powerRails4
avg_total_used_power_mw (RavgTotalUsedPowerMwN

EnergyData!
timestamp_ms (RtimestampMs

energy_uws (R	energyUws

PowerRails
name (	RnameN
energy_data (2-.perfetto.protos.AndroidPowerRails.EnergyDataR
energyData)
avg_used_power_mw (RavgUsedPowerMw

4protos/perfetto/metrics/android/profiler_smaps.protoperfetto.protos6protos/perfetto/metrics/android/process_metadata.proto"

ProfilerSmapsC
instance (2'.perfetto.protos.ProfilerSmaps.InstanceRinstancey
Mapping
path (	Rpath
size_kb (RsizeKb(
private_dirty_kb (RprivateDirtyKb
swap_kb (RswapKb
InstanceA
process (2'.perfetto.protos.AndroidProcessMetadataRprocessB
mappings (2&.perfetto.protos.ProfilerSmaps.MappingRmappings

7protos/perfetto/metrics/android/rt_runtime_metric.protoperfetto.protos"
AndroidRtRuntimeMetric
max_runtime (R
maxRuntime$
over_5ms_count (Rover5msCount[
longest_rt_slices (2/.perfetto.protos.AndroidRtRuntimeMetric.RtSliceRlongestRtSlicesA
RtSlice
tname (	Rtname
ts (Rts
dur (Rdur

0protos/perfetto/metrics/android/simpleperf.protoperfetto.protos"
AndroidSimpleperfMetric!
urgent_ratio (RurgentRatioP
events (28.perfetto.protos.AndroidSimpleperfMetric.PerfEventMetricRevents
PerfEventMetric
name (	Rname^
	processes (2@.perfetto.protos.AndroidSimpleperfMetric.PerfEventMetric.ProcessR	processes
total (RtotalV
Thread
tid (Rtid
name (	Rname
cpu (Rcpu
total (Rtotal
Process
pid (Rpid
name (	RnameY
threads (2?.perfetto.protos.AndroidSimpleperfMetric.PerfEventMetric.ThreadRthreads
total (Rtotal
1
4protos/perfetto/metrics/android/startup_metric.protoperfetto.protos6protos/perfetto/metrics/android/process_metadata.proto"0
AndroidStartupMetricG
startup (2-.perfetto.protos.AndroidStartupMetric.StartupRstartup
TaskStateBreakdown$
running_dur_ns (RrunningDurNs&
runnable_dur_ns (R
runnableDurNs?
uninterruptible_sleep_dur_ns (RuninterruptibleSleepDurNs;
interruptible_sleep_dur_ns (RinterruptibleSleepDurNsD
uninterruptible_io_sleep_dur_ns (RuninterruptibleIoSleepDurNsK
#uninterruptible_non_io_sleep_dur_ns (RuninterruptibleNonIoSleepDurNso
McyclesByCoreType
little (Rlittle
big (Rbig
bigger (Rbigger
unknown (Runknown5
Slice
dur_ns (RdurNs
dur_ms (RdurMs
ToFirstFrame
dur_ns (RdurNs
dur_ms (RdurMsr
main_thread_by_task_state (28.perfetto.protos.AndroidStartupMetric.TaskStateBreakdownRmainThreadByTaskStateh
mcycles_by_core_type (27.perfetto.protos.AndroidStartupMetric.McyclesByCoreTypeRmcyclesByCoreTypeA
other_processes_spawned_count (
RotherProcessesSpawnedCount_
time_activity_manager (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeActivityManagerf
time_activity_thread_main (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeActivityThreadMain_
time_bind_application (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeBindApplication[
time_activity_start (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeActivityStart]
time_activity_resume (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeActivityResume_
time_activity_restart (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeActivityRestartZ
time_choreographer	 (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeChoreographerN
time_inflate (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeInflateY
time_get_resources (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeGetResourcesf
time_before_start_process
 (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeBeforeStartProcessf
time_during_start_process (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeDuringStartProcess^
time_to_running_state# (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeToRunningStateM
to_post_fork (2+.perfetto.protos.AndroidStartupMetric.SliceR
toPostForkb
to_activity_thread_main (2+.perfetto.protos.AndroidStartupMetric.SliceRtoActivityThreadMain[
to_bind_application (2+.perfetto.protos.AndroidStartupMetric.SliceRtoBindApplicationQ
time_post_fork (2+.perfetto.protos.AndroidStartupMetric.SliceRtimePostForkO

time_dex_open (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeDexOpenW
time_verify_class (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeVerifyClass0
jit_compiled_methods (
RjitCompiledMethodsh
time_jit_thread_pool_on_cpu (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeJitThreadPoolOnCpuO

time_gc_total (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeGcTotalP
time_gc_on_cpu (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeGcOnCpus
 time_lock_contention_thread_main (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeLockContentionThreadMainy
#time_monitor_contention_thread_main  (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeMonitorContentionThreadMaine
time_dex_open_thread_main! (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeDexOpenThreadMainb
time_dlopen_thread_main" (2+.perfetto.protos.AndroidStartupMetric.SliceRtimeDlopenThreadMainJ
J
JJ\

HscMetricsN
full_startup (2+.perfetto.protos.AndroidStartupMetric.SliceRfullStartupd
Activity
name (	Rname
method (	Rmethod&
ts_method_start (R
tsMethodStartJ
BinderTransactionG
duration (2+.perfetto.protos.AndroidStartupMetric.SliceRduration
thread (	Rthread-
destination_thread (	RdestinationThread/
destination_process (	RdestinationProcess
flags (	Rflags
code (	Rcode
	data_size (RdataSize
OptimizationStatus
odex_status (	R
odexStatus-
compilation_filter (	RcompilationFilter-
compilation_reason (	RcompilationReason
location (	Rlocation
summary (	Rsummary8
VerifyClass
name (	Rname
dur_ns (RdurNs[
EventTimestamps'
intent_received (RintentReceived
first_frame (R
firstFrame
SystemState+
dex2oat_running (BRdex2oatRunning-
installd_running (BRinstalldRunning<
broadcast_dispatched_count (RbroadcastDispatchedCount8
broadcast_received_count (RbroadcastReceivedCountF
 most_active_non_launch_processes (	RmostActiveNonLaunchProcesses&
installd_dur_ns (R
installdDurNs$
dex2oat_dur_ns (Rdex2oatDurNsK
SlowStartReasonDetailed
reason (	Rreason
details (	Rdetails
Startup

startup_id (
R	startupId!
startup_type (	RstartupType!
package_name (	RpackageName!
process_name (	RprocessNameN

activities (2..perfetto.protos.AndroidStartupMetric.ActivityR
activitiesq
long_binder_transactions (27.perfetto.protos.AndroidStartupMetric.BinderTransactionRlongBinderTransactions,
zygote_new_process (RzygoteNewProcessC
activity_hosting_process_count (
RactivityHostingProcessCount`
event_timestamps
 (25.perfetto.protos.AndroidStartupMetric.EventTimestampsReventTimestampsX
to_first_frame (22.perfetto.protos.AndroidStartupMetric.ToFirstFrameRtoFirstFrameA
process (2'.perfetto.protos.AndroidProcessMetadataRprocessB
hsc (20.perfetto.protos.AndroidStartupMetric.HscMetricsRhscY
report_fully_drawn	 (2+.perfetto.protos.AndroidStartupMetric.SliceRreportFullyDrawni
optimization_status (28.perfetto.protos.AndroidStartupMetric.OptimizationStatusRoptimizationStatusT
verify_class (21.perfetto.protos.AndroidStartupMetric.VerifyClassRverifyClass
dlopen_file (	R
dlopenFile?
startup_concurrent_to_launch (	RstartupConcurrentToLaunchT
system_state (21.perfetto.protos.AndroidStartupMetric.SystemStateRsystemState*
slow_start_reason (	RslowStartReasonz
slow_start_reason_detailed (2=.perfetto.protos.AndroidStartupMetric.SlowStartReasonDetailedRslowStartReasonDetailedJ


4protos/perfetto/metrics/android/surfaceflinger.protoperfetto.protos"
AndroidSurfaceflingerMetric#

missed_frames (
RmissedFrames*
missed_hwc_frames (
RmissedHwcFrames*
missed_gpu_frames (
RmissedGpuFrames*
missed_frame_rate (RmissedFrameRate1
missed_hwc_frame_rate (RmissedHwcFrameRate1
missed_gpu_frame_rate (RmissedGpuFrameRate'
gpu_invocations (
RgpuInvocations2
avg_gpu_waiting_dur_ms (RavgGpuWaitingDurMsH
"total_non_empty_gpu_waiting_dur_ms	 (RtotalNonEmptyGpuWaitingDurMsn
metrics_per_display
 (2>.perfetto.protos.AndroidSurfaceflingerMetric.MetricsPerDisplayRmetricsPerDisplay
MetricsPerDisplay

display_id (	R	displayId#

missed_frames (
RmissedFrames*
missed_hwc_frames (
RmissedHwcFrames*
missed_gpu_frames (
RmissedGpuFrames*
missed_frame_rate (RmissedFrameRate1
missed_hwc_frame_rate (RmissedHwcFrameRate1
missed_gpu_frame_rate (RmissedGpuFrameRate

0protos/perfetto/metrics/android/task_names.protoperfetto.protos"
AndroidTaskNamesC
process (2).perfetto.protos.AndroidTaskNames.ProcessRprocess
Process
pid (Rpid!
process_name (	RprocessName
thread_name (	R
threadName
uid (Ruid(
uid_package_name (	RuidPackageNameJJ

3protos/perfetto/metrics/android/trace_quality.protoperfetto.protos"
AndroidTraceQualityMetricN
failures (22.perfetto.protos.AndroidTraceQualityMetric.FailureRfailures
Failure
name (	Rname
m
?protos/perfetto/metrics/android/android_trusty_workqueues.protoperfetto.protos"
AndroidTrustyWorkqueues

9protos/perfetto/metrics/android/unsymbolized_frames.protoperfetto.protos"
UnsymbolizedFramesA
frames (2).perfetto.protos.UnsymbolizedFrames.FrameRframes~
Frame
module (	Rmodule
build_id (	RbuildId
address (Raddress(
google_lookup_id (	RgoogleLookupId

3protos/perfetto/metrics/android/binder_metric.protoperfetto.protos"
AndroidBinderMetrice
process_breakdown (28.perfetto.protos.AndroidBinderMetric.PerProcessBreakdownRprocessBreakdown{
unaggregated_txn_breakdown (2=.perfetto.protos.AndroidBinderMetric.UnaggregatedTxnBreakdownRunaggregatedTxnBreakdown
PerProcessBreakdown!
process_name (	RprocessName
pid (
Rpid

slice_name (	R	sliceName
count (
Rcount	
UnaggregatedTxnBreakdown
	aidl_name (	RaidlName
aidl_ts (RaidlTs
aidl_dur (RaidlDur
is_sync (RisSync%
client_process (	R
clientProcess#

client_thread (	RclientThread$
is_main_thread (RisMainThread
	client_ts (RclientTs

client_dur (R	clientDur0
client_monotonic_dur (RclientMonotonicDur(
client_oom_score (RclientOomScore=
client_package_version_code (RclientPackageVersionCode?
is_client_package_debuggable (RisClientPackageDebuggable%
server_process	 (	R
serverProcess#

server_thread
 (	RserverThread
	server_ts (RserverTs

server_dur (R	serverDur0
server_monotonic_dur (RserverMonotonicDur(
server_oom_score (RserverOomScore=
server_package_version_code (RserverPackageVersionCode?
is_server_package_debuggable (RisServerPackageDebuggable^

thread_states
 (29.perfetto.protos.AndroidBinderMetric.ThreadStateBreakdownRthreadStatesj
blocked_functions (2=.perfetto.protos.AndroidBinderMetric.BlockedFunctionBreakdownRblockedFunctions

client_tid (
R	clientTid

server_tid (
R	serverTid

client_pid (
R	clientPid

server_pid (
R	serverPidJJ	
ThreadStateBreakdown*
thread_state_type (	RthreadStateType!
thread_state (	RthreadState(
thread_state_dur (RthreadStateDur,
thread_state_count (RthreadStateCount
BlockedFunctionBreakdown*
thread_state_type (	RthreadStateType)
blocked_function (	RblockedFunction0
blocked_function_dur (RblockedFunctionDur4
blocked_function_count (RblockedFunctionCount

?protos/perfetto/metrics/android/monitor_contention_metric.protoperfetto.protos"
AndroidMonitorContentionMetricH
node (24.perfetto.protos.AndroidMonitorContentionMetric.NodeRnode
Node$
node_parent_id (RnodeParentId"

node_child_id (RnodeChildId
node_id (RnodeId
ts (Rts
dur (Rdur#

monotonic_dur (RmonotonicDur!
process_name (	RprocessName
pid (
Rpid!
waiter_count (
RwaiterCounti

thread_states (2D.perfetto.protos.AndroidMonitorContentionMetric.ThreadStateBreakdownRthreadStatesu
blocked_functions (2H.perfetto.protos.AndroidMonitorContentionMetric.BlockedFunctionBreakdownRblockedFunctions'
blocking_method (	RblockingMethod2
short_blocking_method (	RshortBlockingMethod!
blocking_src	 (	RblockingSrc0
blocking_thread_name
 (	RblockingThreadName5
is_blocking_thread_main (RisBlockingThreadMain.
blocking_thread_tid (
RblockingThreadTid%
blocked_method (	R
blockedMethod0
short_blocked_method (	RshortBlockedMethod
blocked_src
 (	R
blockedSrc.
blocked_thread_name (	RblockedThreadName3
is_blocked_thread_main (RisBlockedThreadMain,
blocked_thread_tid (
RblockedThreadTid&
binder_reply_ts (R
binderReplyTs(
binder_reply_tid (
RbinderReplyTid
ThreadStateBreakdown!
thread_state (	RthreadState(
thread_state_dur (RthreadStateDur,
thread_state_count (RthreadStateCount
BlockedFunctionBreakdown)
blocked_function (	RblockedFunction0
blocked_function_dur (RblockedFunctionDur4
blocked_function_count (RblockedFunctionCount

Cprotos/perfetto/metrics/android/monitor_contention_agg_metric.protoperfetto.protos"
!AndroidMonitorContentionAggMetricv
process_aggregation (2E.perfetto.protos.AndroidMonitorContentionAggMetric.ProcessAggregationRprocessAggregation
ProcessAggregation
name (	Rname4
total_contention_count (RtotalContentionCount0
total_contention_dur (RtotalContentionDur?
main_thread_contention_count (RmainThreadContentionCount;
main_thread_contention_dur (RmainThreadContentionDur

Aprotos/perfetto/metrics/android/android_oom_adjuster_metric.protoperfetto.protos"
AndroidOomAdjusterMetric
%oom_adjuster_transition_counts_global (2E.perfetto.protos.AndroidOomAdjusterMetric.OomAdjusterTransitionCountsR!oomAdjusterTransitionCountsGlobal
)oom_adjuster_transition_counts_by_process (2E.perfetto.protos.AndroidOomAdjusterMetric.OomAdjusterTransitionCountsR$oomAdjusterTransitionCountsByProcess
0oom_adjuster_transition_counts_by_oom_adj_reason (2E.perfetto.protos.AndroidOomAdjusterMetric.OomAdjusterTransitionCountsR)oomAdjusterTransitionCountsByOomAdjReason
"oom_adj_bucket_duration_agg_global (2I.perfetto.protos.AndroidOomAdjusterMetric.OomAdjBucketDurationAggregationRoomAdjBucketDurationAggGlobal
&oom_adj_bucket_duration_agg_by_process (2I.perfetto.protos.AndroidOomAdjusterMetric.OomAdjBucketDurationAggregationR oomAdjBucketDurationAggByProcesst
oom_adj_duration_agg (2C.perfetto.protos.AndroidOomAdjusterMetric.OomAdjDurationAggregationRoomAdjDurationAgg
OomAdjusterTransitionCounts
name (	Rname

src_bucket (	R	srcBucket
dest_bucket (	R
destBucket
count (Rcountj
OomAdjBucketDurationAggregation
name (	Rname
bucket (	Rbucket
	total_dur (RtotalDur
OomAdjDurationAggregation%
min_oom_adj_dur (RminOomAdjDur%
max_oom_adj_dur (RmaxOomAdjDur%
avg_oom_adj_dur (RavgOomAdjDur-
oom_adj_event_count (RoomAdjEventCount$
oom_adj_reason (	RoomAdjReason
H
%protos/perfetto/metrics/metrics.protoperfetto.protos8protos/perfetto/metrics/android/ad_services_metric.proto2protos/perfetto/metrics/android/android_boot.proto8protos/perfetto/metrics/android/android_boot_unagg.protoMprotos/perfetto/metrics/android/android_garbage_collection_unagg_metric.protoKprotos/perfetto/metrics/android/sysui_notif_shade_list_builder_metric.protoRprotos/perfetto/metrics/android/sysui_update_notif_on_ui_mode_changed_metric.protoCprotos/perfetto/metrics/android/android_frame_timeline_metric.proto0protos/perfetto/metrics/android/anr_metric.proto1protos/perfetto/metrics/android/batt_metric.protoWprotos/perfetto/metrics/android/android_sysui_notifications_blocking_calls_metric.protoGprotos/perfetto/metrics/android/android_blocking_calls_cuj_metric.protoBprotos/perfetto/metrics/android/android_blocking_calls_unagg.proto3protos/perfetto/metrics/android/codec_metrics.proto0protos/perfetto/metrics/android/cpu_metric.proto3protos/perfetto/metrics/android/camera_metric.proto9protos/perfetto/metrics/android/camera_unagg_metric.proto5protos/perfetto/metrics/android/display_metrics.proto5protos/perfetto/metrics/android/dma_heap_metric.proto1protos/perfetto/metrics/android/dvfs_metric.proto4protos/perfetto/metrics/android/fastrpc_metric.proto0protos/perfetto/metrics/android/g2d_metric.proto0protos/perfetto/metrics/android/gpu_metric.proto0protos/perfetto/metrics/android/hwcomposer.proto1protos/perfetto/metrics/android/hwui_metric.proto/protos/perfetto/metrics/android/io_metric.proto5protos/perfetto/metrics/android/io_unagg_metric.proto0protos/perfetto/metrics/android/ion_metric.proto8protos/perfetto/metrics/android/irq_runtime_metric.proto5protos/perfetto/metrics/android/jank_cuj_metric.proto9protos/perfetto/metrics/android/java_heap_histogram.proto5protos/perfetto/metrics/android/java_heap_stats.proto0protos/perfetto/metrics/android/lmk_metric.proto7protos/perfetto/metrics/android/lmk_reason_metric.proto0protos/perfetto/metrics/android/mem_metric.proto6protos/perfetto/metrics/android/mem_unagg_metric.proto6protos/perfetto/metrics/android/multiuser_metric.proto4protos/perfetto/metrics/android/network_metric.proto2protos/perfetto/metrics/android/other_traces.proto2protos/perfetto/metrics/android/package_list.proto5protos/perfetto/metrics/android/powrails_metric.proto4protos/perfetto/metrics/android/profiler_smaps.proto7protos/perfetto/metrics/android/rt_runtime_metric.proto0protos/perfetto/metrics/android/simpleperf.proto4protos/perfetto/metrics/android/startup_metric.proto4protos/perfetto/metrics/android/surfaceflinger.proto0protos/perfetto/metrics/android/task_names.proto3protos/perfetto/metrics/android/trace_quality.proto?protos/perfetto/metrics/android/android_trusty_workqueues.proto9protos/perfetto/metrics/android/unsymbolized_frames.proto3protos/perfetto/metrics/android/binder_metric.proto?protos/perfetto/metrics/android/monitor_contention_metric.protoCprotos/perfetto/metrics/android/monitor_contention_agg_metric.proto?protos/perfetto/metrics/android/app_process_starts_metric.protoAprotos/perfetto/metrics/android/android_oom_adjuster_metric.proto"

TraceMetadata*
trace_duration_ns (RtraceDurationNs

trace_uuid (	R	traceUuid:
android_build_fingerprint (	RandroidBuildFingerprintI
!statsd_triggering_subscription_id (RstatsdTriggeringSubscriptionId(
trace_size_bytes (RtraceSizeBytes#

trace_trigger (	RtraceTrigger.
unique_session_name (	RuniqueSessionName,
trace_config_pbtxt	 (	RtraceConfigPbtxt*
sched_duration_ns
 (RschedDurationNs,
tracing_started_ns (RtracingStartedNsJ"
TraceAnalysisStats<
stat (2(.perfetto.protos.TraceAnalysisStats.StatRstat
Stat
name (	Rname
idx (
RidxH
severity (2,.perfetto.protos.TraceAnalysisStats.SeverityRseverityB
source (2*.perfetto.protos.TraceAnalysisStats.SourceRsource
count (Rcount"_
Severity
SEVERITY_UNKNOWN