blob: 934ad882a6359ea5d1260bfe6b6c97d544d7e831 [file] [log] [blame]
Glen Kuhne94814572016-10-25 12:40:35 -07001/*
2 * Copyright (C) 2016 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 * http://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 */
16
17syntax = "proto2";
18
19package clearcut.connectivity;
20
21option java_package = "com.android.server.wifi";
22option java_outer_classname = "WifiMetricsProto";
23
24// The information about the Wifi events.
25message WifiLog {
26
27 // Session information that gets logged for every Wifi connection.
28 repeated ConnectionEvent connection_event = 1;
29
30 // Number of saved networks in the user profile.
31 optional int32 num_saved_networks = 2;
32
33 // Number of open networks in the saved networks.
34 optional int32 num_open_networks = 3;
35
36 // Number of personal networks.
37 optional int32 num_personal_networks = 4;
38
39 // Number of enterprise networks.
40 optional int32 num_enterprise_networks = 5;
41
42 // Does the user have location setting enabled.
43 optional bool is_location_enabled = 6;
44
45 // Does the user have scanning enabled.
46 optional bool is_scanning_always_enabled = 7;
47
48 // Number of times user toggled wifi using the settings menu.
49 optional int32 num_wifi_toggled_via_settings = 8;
50
51 // Number of times user toggled wifi using the airplane menu.
52 optional int32 num_wifi_toggled_via_airplane = 9;
53
54 // Number of networks added by the user.
55 optional int32 num_networks_added_by_user = 10;
56
57 // Number of networks added by applications.
58 optional int32 num_networks_added_by_apps = 11;
59
60 // Number scans that returned empty results.
61 optional int32 num_empty_scan_results = 12;
62
63 // Number scans that returned at least one result.
64 optional int32 num_non_empty_scan_results = 13;
65
Ningyuan Wang72886332017-12-20 16:17:33 -080066 // Number of single scans requests.
Glen Kuhne94814572016-10-25 12:40:35 -070067 optional int32 num_oneshot_scans = 14;
68
69 // Number of repeated background scans that were scheduled to the chip.
70 optional int32 num_background_scans = 15;
71
72 // Error codes that a scan can result in.
73 enum ScanReturnCode {
74
75 // Return Code is unknown.
76 SCAN_UNKNOWN = 0;
77
78 // Scan was successful.
79 SCAN_SUCCESS = 1;
80
81 // Scan was successfully started, but was interrupted.
82 SCAN_FAILURE_INTERRUPTED = 2;
83
84 // Scan failed to start because of invalid configuration
85 // (bad channel, etc).
86 SCAN_FAILURE_INVALID_CONFIGURATION = 3;
87
88 // Could not start a scan because wifi is disabled.
89 FAILURE_WIFI_DISABLED = 4;
90
91 }
92
93 // Mapping of error codes to the number of times that scans resulted
94 // in that error.
95 repeated ScanReturnEntry scan_return_entries = 16;
96
97 message ScanReturnEntry {
98
99 // Return code of the scan.
100 optional ScanReturnCode scan_return_code = 1;
101
102 // Number of entries that were found in the scan.
103 optional int32 scan_results_count = 2;
104 }
105
106 // State of the Wifi.
107 enum WifiState {
108
109 // State is unknown.
110 WIFI_UNKNOWN = 0;
111
112 // Wifi is disabled.
113 WIFI_DISABLED = 1;
114
115 // Wifi is enabled.
116 WIFI_DISCONNECTED = 2;
117
118 // Wifi is enabled and associated with an AP.
119 WIFI_ASSOCIATED = 3;
120 }
121
122 // Mapping of system state to the number of times that scans were requested in
123 // that state
124 repeated WifiSystemStateEntry wifi_system_state_entries = 17;
125
126 message WifiSystemStateEntry {
127
128 // Current WiFi state.
129 optional WifiState wifi_state = 1;
130
131 // Count of scans in state.
132 optional int32 wifi_state_count = 2;
133
134 // Is screen on.
135 optional bool is_screen_on = 3;
136 }
137
138 // Mapping of Error/Success codes to the number of background scans that resulted in it
139 repeated ScanReturnEntry background_scan_return_entries = 18;
140
141 // Mapping of system state to the number of times that Background scans were requested in that
142 // state
143 repeated WifiSystemStateEntry background_scan_request_state = 19;
144
145 // Total number of times the Watchdog of Last Resort triggered, resetting the wifi stack
146 optional int32 num_last_resort_watchdog_triggers = 20;
147
148 // Total number of networks over bad association threshold when watchdog triggered
149 optional int32 num_last_resort_watchdog_bad_association_networks_total = 21;
150
151 // Total number of networks over bad authentication threshold when watchdog triggered
152 optional int32 num_last_resort_watchdog_bad_authentication_networks_total = 22;
153
154 // Total number of networks over bad dhcp threshold when watchdog triggered
155 optional int32 num_last_resort_watchdog_bad_dhcp_networks_total = 23;
156
157 // Total number of networks over bad other threshold when watchdog triggered
158 optional int32 num_last_resort_watchdog_bad_other_networks_total = 24;
159
160 // Total count of networks seen when watchdog triggered
161 optional int32 num_last_resort_watchdog_available_networks_total = 25;
162
163 // Total count of triggers with atleast one bad association network
164 optional int32 num_last_resort_watchdog_triggers_with_bad_association = 26;
165
166 // Total count of triggers with atleast one bad authentication network
167 optional int32 num_last_resort_watchdog_triggers_with_bad_authentication = 27;
168
169 // Total count of triggers with atleast one bad dhcp network
170 optional int32 num_last_resort_watchdog_triggers_with_bad_dhcp = 28;
171
172 // Total count of triggers with atleast one bad other network
173 optional int32 num_last_resort_watchdog_triggers_with_bad_other = 29;
174
175 // Count of times connectivity watchdog confirmed pno is working
176 optional int32 num_connectivity_watchdog_pno_good = 30;
177
178 // Count of times connectivity watchdog found pno not working
179 optional int32 num_connectivity_watchdog_pno_bad = 31;
180
181 // Count of times connectivity watchdog confirmed background scan is working
182 optional int32 num_connectivity_watchdog_background_good = 32;
183
184 // Count of times connectivity watchdog found background scan not working
185 optional int32 num_connectivity_watchdog_background_bad = 33;
186
187 // The time duration represented by this wifi log, from start to end of capture
188 optional int32 record_duration_sec = 34;
189
190 // Counts the occurrences of each individual RSSI poll level
191 repeated RssiPollCount rssi_poll_rssi_count = 35;
192
193 // Total number of times WiFi connected immediately after a Last Resort Watchdog trigger,
194 // without new networks becoming available.
195 optional int32 num_last_resort_watchdog_successes = 36;
196
197 // Total number of saved hidden networks
198 optional int32 num_hidden_networks = 37;
199
200 // Total number of saved passpoint / hotspot 2.0 networks
201 optional int32 num_passpoint_networks = 38;
202
203 // Total number of scan results
204 optional int32 num_total_scan_results = 39;
205
206 // Total number of scan results for open networks
207 optional int32 num_open_network_scan_results = 40;
208
209 // Total number of scan results for personal networks
210 optional int32 num_personal_network_scan_results = 41;
211
212 // Total number of scan results for enterprise networks
213 optional int32 num_enterprise_network_scan_results = 42;
214
215 // Total number of scan results for hidden networks
216 optional int32 num_hidden_network_scan_results = 43;
217
218 // Total number of scan results for hotspot 2.0 r1 networks
219 optional int32 num_hotspot2_r1_network_scan_results = 44;
220
221 // Total number of scan results for hotspot 2.0 r2 networks
222 optional int32 num_hotspot2_r2_network_scan_results = 45;
223
224 // Total number of scans handled by framework (oneshot or otherwise)
225 optional int32 num_scans = 46;
226
227 // Counts the occurrences of each alert reason.
228 repeated AlertReasonCount alert_reason_count = 47;
229
230 // Counts the occurrences of each Wifi score
231 repeated WifiScoreCount wifi_score_count = 48;
232
233 // Histogram of Soft AP Durations
234 repeated SoftApDurationBucket soft_ap_duration = 49;
235
236 // Histogram of Soft AP ReturnCode
237 repeated SoftApReturnCodeCount soft_ap_return_code = 50;
238
239 // Histogram of the delta between scan result RSSI and RSSI polls
240 repeated RssiPollCount rssi_poll_delta_count = 51;
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700241
242 // List of events
243 repeated StaEvent sta_event_list = 52;
Roshan Pius3607a392017-05-11 09:05:58 -0700244
245 // Total number of times WiFi HAL crashed.
246 optional int32 num_hal_crashes = 53;
247
248 // Total number of times WiFicond crashed.
249 optional int32 num_wificond_crashes = 54;
250
251 // Indicates the number of times an error was encountered in
Roshan Piusa66e6382018-03-14 16:10:16 -0700252 // Wifi HAL on |WifiNative.setupInterfaceForClientMode|.
253 optional int32 num_setup_client_interface_failure_due_to_hal = 55;
Roshan Pius3607a392017-05-11 09:05:58 -0700254
255 // Indicates the number of times an error was encountered in
Roshan Piusa66e6382018-03-14 16:10:16 -0700256 // Wificond on |WifiNative.setupInterfaceForClientMode|.
257 optional int32 num_setup_client_interface_failure_due_to_wificond = 56;
Etan Cohen737addc2017-04-26 08:01:57 -0700258
259 // Wi-Fi Aware metrics
260 optional WifiAwareLog wifi_aware_log = 57;
Peter Qiu84243152017-06-22 13:44:04 -0700261
262 // Number of saved Passpoint providers in user profile.
263 optional int32 num_passpoint_providers = 58;
264
265 // Count of times Passpoint provider being installed.
266 optional int32 num_passpoint_provider_installation = 59;
267
268 // Count of times Passpoint provivider is installed successfully.
269 optional int32 num_passpoint_provider_install_success = 60;
270
271 // Count of times Passpoint provider is being uninstalled.
272 optional int32 num_passpoint_provider_uninstallation = 61;
273
274 // Count of times Passpoint provider is uninstalled successfully.
275 optional int32 num_passpoint_provider_uninstall_success = 62;
276
277 // Count of saved Passpoint providers device has ever connected to.
278 optional int32 num_passpoint_providers_successfully_connected = 63;
Glen Kuhnee2d67c02017-04-25 13:08:29 -0700279
280 // Histogram counting instances of scans with N many ScanResults with unique ssids
281 repeated NumConnectableNetworksBucket total_ssids_in_scan_histogram = 64;
282
283 // Histogram counting instances of scans with N many ScanResults/bssids
284 repeated NumConnectableNetworksBucket total_bssids_in_scan_histogram = 65;
285
286 // Histogram counting instances of scans with N many unique open ssids
287 repeated NumConnectableNetworksBucket available_open_ssids_in_scan_histogram = 66;
288
289 // Histogram counting instances of scans with N many bssids for open networks
290 repeated NumConnectableNetworksBucket available_open_bssids_in_scan_histogram = 67;
291
292 // Histogram counting instances of scans with N many unique ssids for saved networks
293 repeated NumConnectableNetworksBucket available_saved_ssids_in_scan_histogram = 68;
294
295 // Histogram counting instances of scans with N many bssids for saved networks
296 repeated NumConnectableNetworksBucket available_saved_bssids_in_scan_histogram = 69;
297
298 // Histogram counting instances of scans with N many unique SSIDs for open or saved networks
299 repeated NumConnectableNetworksBucket available_open_or_saved_ssids_in_scan_histogram = 70;
300
301 // Histogram counting instances of scans with N many BSSIDs for open or saved networks
302 repeated NumConnectableNetworksBucket available_open_or_saved_bssids_in_scan_histogram = 71;
303
304 // Histogram counting instances of scans with N many ScanResults matching unique saved passpoint providers
305 repeated NumConnectableNetworksBucket available_saved_passpoint_provider_profiles_in_scan_histogram = 72;
306
307 // Histogram counting instances of scans with N many ScanResults BSSIDs matching a saved passpoint provider
308 repeated NumConnectableNetworksBucket available_saved_passpoint_provider_bssids_in_scan_histogram = 73;
309
310 // Counts the number of AllSingleScanLister.onResult calls with a full band scan result
311 optional int32 full_band_all_single_scan_listener_results = 74;
312
313 // Counts the number of AllSingleScanLister.onResult calls with a partial (channels) scan result
314 optional int32 partial_all_single_scan_listener_results = 75;
Mehdi Alizadehd9163cf2017-08-10 18:20:25 -0700315
316 // Pno scan metrics
317 optional PnoScanMetrics pno_scan_metrics = 76;
Stephen Chenfc0facb2017-09-14 14:35:15 -0700318
319 // Histogram of "Connect to Network" notifications.
320 // The notification Action should be unset.
321 repeated ConnectToNetworkNotificationAndActionCount connect_to_network_notification_count = 77;
322
323 // Histogram of "Connect to Network" notification user actions.
324 repeated ConnectToNetworkNotificationAndActionCount connect_to_network_notification_action_count = 78;
325
326 // The number of SSIDs blacklisted from recommendation by the open network
327 // notification recommender
328 optional int32 open_network_recommender_blacklist_size = 79;
329
330 // Is the available network notification feature turned on
331 optional bool is_wifi_networks_available_notification_on = 80;
332
333 // Count of recommendation updates made by the open network notification
334 // recommender
335 optional int32 num_open_network_recommendation_updates = 81;
336
337 // Count of connection attempts that were initiated unsuccessfully
338 optional int32 num_open_network_connect_message_failed_to_send = 82;
Etan Cohenc462a7a2017-10-09 10:27:44 -0700339
340 // Histogram counting instances of scans with N many HotSpot 2.0 R1 APs
341 repeated NumConnectableNetworksBucket observed_hotspot_r1_aps_in_scan_histogram = 83;
342
343 // Histogram counting instances of scans with N many HotSpot 2.0 R2 APs
344 repeated NumConnectableNetworksBucket observed_hotspot_r2_aps_in_scan_histogram = 84;
345
346 // Histogram counting instances of scans with N many unique HotSpot 2.0 R1 ESS.
347 // Where ESS is defined as the (HESSID, ANQP Domain ID), (SSID, ANQP Domain ID) or
348 // (SSID, BSSID) tuple depending on AP configuration (in the above priority
349 // order).
350 repeated NumConnectableNetworksBucket observed_hotspot_r1_ess_in_scan_histogram = 85;
351
352 // Histogram counting instances of scans with N many unique HotSpot 2.0 R2 ESS.
353 // Where ESS is defined as the (HESSID, ANQP Domain ID), (SSID, ANQP Domain ID) or
354 // (SSID, BSSID) tuple depending on AP configuration (in the above priority
355 // order).
356 repeated NumConnectableNetworksBucket observed_hotspot_r2_ess_in_scan_histogram = 86;
357
358 // Histogram counting number of HotSpot 2.0 R1 APs per observed ESS in a scan
359 // (one value added per unique ESS - potentially multiple counts per single
360 // scan!)
361 repeated NumConnectableNetworksBucket observed_hotspot_r1_aps_per_ess_in_scan_histogram = 87;
362
363 // Histogram counting number of HotSpot 2.0 R2 APs per observed ESS in a scan
364 // (one value added per unique ESS - potentially multiple counts per single
365 // scan!)
366 repeated NumConnectableNetworksBucket observed_hotspot_r2_aps_per_ess_in_scan_histogram = 88;
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -0700367
368 // SoftAP event list tracking sessions and client counts in tethered mode
369 repeated SoftApConnectedClientsEvent soft_ap_connected_clients_events_tethered = 89;
370
371 // SoftAP event list tracking sessions and client counts in local only mode
372 repeated SoftApConnectedClientsEvent soft_ap_connected_clients_events_local_only = 90;
Jong Wook Kim72c49ee2017-10-26 13:16:36 -0700373
374 // Wps connection metrics
375 optional WpsMetrics wps_metrics = 91;
Siddharth Rayac8b69a2018-01-27 18:05:44 -0800376
377 // Wifi power statistics
378 optional WifiPowerStats wifi_power_stats = 92;
Ningyuan Wang72886332017-12-20 16:17:33 -0800379
380 // Number of connectivity single scan requests.
381 optional int32 num_connectivity_oneshot_scans = 93;
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -0800382
383 // WifiWake statistics
384 optional WifiWakeStats wifi_wake_stats = 94;
Etan Cohenf30125b2018-03-24 16:51:41 -0700385
386 // Histogram counting instances of scans with N many 802.11mc (RTT) supporting APs
387 repeated NumConnectableNetworksBucket observed_80211mc_supporting_aps_in_scan_histogram = 95;
Roshan Piusa66e6382018-03-14 16:10:16 -0700388
389 // Total number of times supplicant crashed.
390 optional int32 num_supplicant_crashes = 96;
391
392 // Total number of times hostapd crashed.
393 optional int32 num_hostapd_crashes = 97;
394
395 // Indicates the number of times an error was encountered in
396 // supplicant on |WifiNative.setupInterfaceForClientMode|.
397 optional int32 num_setup_client_interface_failure_due_to_supplicant = 98;
398
399 // Indicates the number of times an error was encountered in
400 // Wifi HAL on |WifiNative.setupInterfaceForSoftApMode|.
401 optional int32 num_setup_soft_ap_interface_failure_due_to_hal = 99;
402
403 // Indicates the number of times an error was encountered in
404 // Wifi HAL on |WifiNative.setupInterfaceForSoftApMode|.
405 optional int32 num_setup_soft_ap_interface_failure_due_to_wificond = 100;
406
407 // Indicates the number of times an error was encountered in
408 // Wifi HAL on |WifiNative.setupInterfaceForSoftApMode|.
409 optional int32 num_setup_soft_ap_interface_failure_due_to_hostapd = 101;
410
411 // Indicates the number of times we got an interface down in client mode.
412 optional int32 num_client_interface_down = 102;
413
414 // Indicates the number of times we got an interface down in softap mode.
415 optional int32 num_soft_ap_interface_down = 103;
Roshan Pius48f65632018-03-27 14:33:01 -0700416
417 // Indicates the number of scan requests from external apps.
418 optional int32 num_external_app_oneshot_scan_requests = 104;
419
420 // Indicates the number of times a scan request from an external foreground app was throttled.
421 optional int32 num_external_foreground_app_oneshot_scan_requests_throttled = 105;
422
423 // Indicates the number of times a scan request from an external background app was throttled.
424 optional int32 num_external_background_app_oneshot_scan_requests_throttled = 106;
Glen Kuhne94814572016-10-25 12:40:35 -0700425}
426
427// Information that gets logged for every WiFi connection.
428message RouterFingerPrint {
429
430 enum RoamType {
431
432 // Type is unknown.
433 ROAM_TYPE_UNKNOWN = 0;
434
435 // No roaming - usually happens on a single band (2.4 GHz) router.
436 ROAM_TYPE_NONE = 1;
437
438 // Enterprise router.
439 ROAM_TYPE_ENTERPRISE = 2;
440
441 // DBDC => Dual Band Dual Concurrent essentially a router that
442 // supports both 2.4 GHz and 5 GHz bands.
443 ROAM_TYPE_DBDC = 3;
444 }
445
446 enum Auth {
447
448 // Auth is unknown.
449 AUTH_UNKNOWN = 0;
450
451 // No authentication.
452 AUTH_OPEN = 1;
453
454 // If the router uses a personal authentication.
455 AUTH_PERSONAL = 2;
456
457 // If the router is setup for enterprise authentication.
458 AUTH_ENTERPRISE = 3;
459 }
460
461 enum RouterTechnology {
462
463 // Router is unknown.
464 ROUTER_TECH_UNKNOWN = 0;
465
466 // Router Channel A.
467 ROUTER_TECH_A = 1;
468
469 // Router Channel B.
470 ROUTER_TECH_B = 2;
471
472 // Router Channel G.
473 ROUTER_TECH_G = 3;
474
475 // Router Channel N.
476 ROUTER_TECH_N = 4;
477
478 // Router Channel AC.
479 ROUTER_TECH_AC = 5;
480
481 // When the channel is not one of the above.
482 ROUTER_TECH_OTHER = 6;
483 }
484
485 optional RoamType roam_type = 1;
486
487 // Channel on which the connection takes place.
488 optional int32 channel_info = 2;
489
490 // DTIM setting of the router.
491 optional int32 dtim = 3;
492
493 // Authentication scheme of the router.
494 optional Auth authentication = 4;
495
496 // If the router is hidden.
497 optional bool hidden = 5;
498
499 // Channel information.
500 optional RouterTechnology router_technology = 6;
501
502 // whether ipv6 is supported.
503 optional bool supports_ipv6 = 7;
504
505 // If the router is a passpoint / hotspot 2.0 network
506 optional bool passpoint = 8;
507}
508
509message ConnectionEvent {
510
511 // Roam Type.
512 enum RoamType {
513
514 // Type is unknown.
515 ROAM_UNKNOWN = 0;
516
517 // No roaming.
518 ROAM_NONE = 1;
519
520 // DBDC roaming.
521 ROAM_DBDC = 2;
522
523 // Enterprise roaming.
524 ROAM_ENTERPRISE = 3;
525
526 // User selected roaming.
527 ROAM_USER_SELECTED = 4;
528
529 // Unrelated.
530 ROAM_UNRELATED = 5;
531 }
532
533 // Connectivity Level Failure.
534 enum ConnectivityLevelFailure {
535
536 // Failure is unknown.
537 HLF_UNKNOWN = 0;
538
539 // No failure.
540 HLF_NONE = 1;
541
542 // DHCP failure.
543 HLF_DHCP = 2;
544
545 // No internet connection.
546 HLF_NO_INTERNET = 3;
547
548 // No internet connection.
549 HLF_UNWANTED = 4;
550 }
551
552 // Start time of the connection.
553 optional int64 start_time_millis = 1;// [(datapol.semantic_type) = ST_TIMESTAMP];
554
555 // Duration to connect.
556 optional int32 duration_taken_to_connect_millis = 2;
557
558 // Router information.
559 optional RouterFingerPrint router_fingerprint = 3;
560
561 // RSSI at the start of the connection.
562 optional int32 signal_strength = 4;
563
564 // Roam Type.
565 optional RoamType roam_type = 5;
566
567 // Result of the connection.
568 optional int32 connection_result = 6;
569
570 // Reasons for level 2 failure (needs to be coordinated with wpa-supplicant).
571 optional int32 level_2_failure_code = 7;
572
573 // Failures that happen at the connectivity layer.
574 optional ConnectivityLevelFailure connectivity_level_failure_code = 8;
575
576 // Has bug report been taken.
577 optional bool automatic_bug_report_taken = 9;
578}
579
580// Number of occurrences of a specific RSSI poll rssi value
581message RssiPollCount {
582 // RSSI
583 optional int32 rssi = 1;
584
585 // Number of RSSI polls with 'rssi'
586 optional int32 count = 2;
587}
588
589// Number of occurrences of a specific alert reason value
590message AlertReasonCount {
591 // Alert reason
592 optional int32 reason = 1;
593
594 // Number of alerts with |reason|.
595 optional int32 count = 2;
596}
597
598// Counts the number of instances of a specific Wifi Score calculated by WifiScoreReport
599message WifiScoreCount {
600 // Wifi Score
601 optional int32 score = 1;
602
603 // Number of Wifi score reports with this score
604 optional int32 count = 2;
605}
606
607// Number of occurrences of Soft AP session durations
608message SoftApDurationBucket {
609 // Bucket covers duration : [duration_sec, duration_sec + bucket_size_sec)
610 // The (inclusive) lower bound of Soft AP session duration represented by this bucket
611 optional int32 duration_sec = 1;
612
613 // The size of this bucket
614 optional int32 bucket_size_sec = 2;
615
616 // Number of soft AP session durations that fit into this bucket
617 optional int32 count = 3;
618}
619
620// Number of occurrences of a soft AP session return code
621message SoftApReturnCodeCount {
Rebecca Silberstein28d9de22017-01-24 10:42:59 -0800622
623 enum SoftApStartResult {
624
625 // SoftApManager return code unknown
626 SOFT_AP_RETURN_CODE_UNKNOWN = 0;
627
628 // SoftAp started successfully
629 SOFT_AP_STARTED_SUCCESSFULLY = 1;
630
631 // Catch all for failures with no specific failure reason
632 SOFT_AP_FAILED_GENERAL_ERROR = 2;
633
634 // SoftAp failed to start due to NO_CHANNEL error
635 SOFT_AP_FAILED_NO_CHANNEL = 3;
636 }
637
638 // Historical, no longer used for writing as of 01/2017.
639 optional int32 return_code = 1 [deprecated = true];
Glen Kuhne94814572016-10-25 12:40:35 -0700640
641 // Occurrences of this soft AP return code
642 optional int32 count = 2;
Rebecca Silberstein28d9de22017-01-24 10:42:59 -0800643
644 // Result of attempt to start SoftAp
645 optional SoftApStartResult start_result = 3;
Glen Kuhne94814572016-10-25 12:40:35 -0700646}
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700647
648message StaEvent {
649 message ConfigInfo {
650 // The set of key management protocols supported by this configuration.
651 optional uint32 allowed_key_management = 1 [default = 0];
652
653 // The set of security protocols supported by this configuration.
654 optional uint32 allowed_protocols = 2 [default = 0];
655
656 // The set of authentication protocols supported by this configuration.
657 optional uint32 allowed_auth_algorithms = 3 [default = 0];
658
659 // The set of pairwise ciphers for WPA supported by this configuration.
660 optional uint32 allowed_pairwise_ciphers = 4 [default = 0];
661
662 // The set of group ciphers supported by this configuration.
663 optional uint32 allowed_group_ciphers = 5;
664
665 // Is this a 'hidden network'
666 optional bool hidden_ssid = 6;
667
668 // Is this a Hotspot 2.0 / passpoint network
669 optional bool is_passpoint = 7;
670
671 // Is this an 'ephemeral' network (Not in saved network list, recommended externally)
672 optional bool is_ephemeral = 8;
673
674 // Has a successful connection ever been established using this WifiConfiguration
675 optional bool has_ever_connected = 9;
676
677 // RSSI of the scan result candidate associated with this WifiConfiguration
678 optional int32 scan_rssi = 10 [default = -127];
679
680 // Frequency of the scan result candidate associated with this WifiConfiguration
681 optional int32 scan_freq = 11 [default = -1];
682 }
683
684 enum EventType {
685 // Default/Invalid event
686 TYPE_UNKNOWN = 0;
687
688 // Supplicant Association Rejection event. Code contains the 802.11
689 TYPE_ASSOCIATION_REJECTION_EVENT = 1;
690
691 // Supplicant L2 event,
692 TYPE_AUTHENTICATION_FAILURE_EVENT = 2;
693
694 // Supplicant L2 event
695 TYPE_NETWORK_CONNECTION_EVENT = 3;
696
697 // Supplicant L2 event
698 TYPE_NETWORK_DISCONNECTION_EVENT = 4;
699
700 // Supplicant L2 event
701 TYPE_SUPPLICANT_STATE_CHANGE_EVENT = 5;
702
703 // Supplicant L2 event
704 TYPE_CMD_ASSOCIATED_BSSID = 6;
705
706 // IP Manager successfully completed IP Provisioning
707 TYPE_CMD_IP_CONFIGURATION_SUCCESSFUL = 7;
708
709 // IP Manager failed to complete IP Provisioning
710 TYPE_CMD_IP_CONFIGURATION_LOST = 8;
711
712 // IP Manager lost reachability to network neighbors
713 TYPE_CMD_IP_REACHABILITY_LOST = 9;
714
715 // Indicator that Supplicant is targeting a BSSID for roam/connection
716 TYPE_CMD_TARGET_BSSID = 10;
717
718 // Wifi framework is initiating a connection attempt
719 TYPE_CMD_START_CONNECT = 11;
720
721 // Wifi framework is initiating a roaming connection attempt
722 TYPE_CMD_START_ROAM = 12;
723
724 // SystemAPI connect() command, Settings App
725 TYPE_CONNECT_NETWORK = 13;
726
727 // Network Agent has validated the internet connection (Captive Portal Check success, or user
728 // validation)
729 TYPE_NETWORK_AGENT_VALID_NETWORK = 14;
730
731 // Framework initiated disconnect. Sometimes generated to give an extra reason for a disconnect
732 // Should typically be followed by a NETWORK_DISCONNECTION_EVENT with a local_gen = true
733 TYPE_FRAMEWORK_DISCONNECT = 15;
Michael Plassbb367b62017-10-06 10:29:51 -0700734
735 // The NetworkAgent score for wifi has changed in a way that may impact
736 // connectivity
737 TYPE_SCORE_BREACH = 16;
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700738 }
739
740 enum FrameworkDisconnectReason {
741 // default/none/unknown value
742 DISCONNECT_UNKNOWN = 0;
743
744 // API DISCONNECT
745 DISCONNECT_API = 1;
746
747 // Some framework internal reason (generic)
748 DISCONNECT_GENERIC = 2;
749
750 // Network Agent network validation failed, user signaled network unwanted
751 DISCONNECT_UNWANTED = 3;
752
753 // Roaming timed out
754 DISCONNECT_ROAM_WATCHDOG_TIMER = 4;
755
756 // P2P service requested wifi disconnect
757 DISCONNECT_P2P_DISCONNECT_WIFI_REQUEST = 5;
758
759 // SIM was removed while using a SIM config
760 DISCONNECT_RESET_SIM_NETWORKS = 6;
761 }
762
763 // Authentication Failure reasons as reported through the API.
764 enum AuthFailureReason {
765 // Unknown default
766 AUTH_FAILURE_UNKNOWN = 0;
767
768 // The reason code if there is no error during authentication. It could also imply that there no
769 // authentication in progress,
770 AUTH_FAILURE_NONE = 1;
771
772 // The reason code if there was a timeout authenticating.
773 AUTH_FAILURE_TIMEOUT = 2;
774
775 // The reason code if there was a wrong password while authenticating.
776 AUTH_FAILURE_WRONG_PSWD = 3;
777
778 // The reason code if there was EAP failure while authenticating.
779 AUTH_FAILURE_EAP_FAILURE = 4;
780 }
781
782 // What event was this
783 optional EventType type = 1;
784
785 // 80211 death reason code, relevant to NETWORK_DISCONNECTION_EVENTs
786 optional int32 reason = 2 [default = -1];
787
788 // 80211 Association Status code, relevant to ASSOCIATION_REJECTION_EVENTs
789 optional int32 status = 3 [default = -1];
790
791 // Designates whether a NETWORK_DISCONNECT_EVENT was by the STA or AP
792 optional bool local_gen = 4 [default = false];
793
794 // Network information from the WifiConfiguration of a framework initiated connection attempt
795 optional ConfigInfo config_info = 5;
796
797 // RSSI from the last rssi poll (Only valid for active connections)
798 optional int32 last_rssi = 6 [default = -127];
799
800 // Link speed from the last rssi poll (Only valid for active connections)
801 optional int32 last_link_speed = 7 [default = -1];
802
803 // Frequency from the last rssi poll (Only valid for active connections)
804 optional int32 last_freq = 8 [default = -1];
805
806 // Enum used to define bit positions in the supplicant_state_change_bitmask
807 // See {@code frameworks/base/wifi/java/android/net/wifi/SupplicantState.java} for documentation
808 enum SupplicantState {
809 STATE_DISCONNECTED = 0;
810
811 STATE_INTERFACE_DISABLED = 1;
812
813 STATE_INACTIVE = 2;
814
815 STATE_SCANNING = 3;
816
817 STATE_AUTHENTICATING = 4;
818
819 STATE_ASSOCIATING = 5;
820
821 STATE_ASSOCIATED = 6;
822
823 STATE_FOUR_WAY_HANDSHAKE = 7;
824
825 STATE_GROUP_HANDSHAKE = 8;
826
827 STATE_COMPLETED = 9;
828
829 STATE_DORMANT = 10;
830
831 STATE_UNINITIALIZED = 11;
832
833 STATE_INVALID = 12;
834 }
835
836 // Bit mask of all supplicant state changes that occured since the last event
837 optional uint32 supplicant_state_changes_bitmask = 9 [default = 0];
838
839 // The number of milliseconds that have elapsed since the device booted
840 optional int64 start_time_millis = 10 [default = 0];
841
842 optional FrameworkDisconnectReason framework_disconnect_reason = 11 [default = DISCONNECT_UNKNOWN];
843
844 // Flag which indicates if an association rejection event occured due to a timeout
845 optional bool association_timed_out = 12 [default = false];
846
847 // Authentication failure reason, as reported by WifiManager (calculated from state & deauth code)
848 optional AuthFailureReason auth_failure_reason = 13 [default = AUTH_FAILURE_UNKNOWN];
Michael Plassbb367b62017-10-06 10:29:51 -0700849
850 // NetworkAgent score of connected wifi
851 optional int32 last_score = 14 [default = -1];
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700852}
Etan Cohen737addc2017-04-26 08:01:57 -0700853
854// Wi-Fi Aware metrics
855message WifiAwareLog {
856 // total number of unique apps that used Aware (measured on attach)
857 optional int32 num_apps = 1;
858
859 // total number of unique apps that used an identity callback when attaching
860 optional int32 num_apps_using_identity_callback = 2;
861
862 // maximum number of attaches for an app
863 optional int32 max_concurrent_attach_sessions_in_app = 3;
864
865 // histogram of attach request results
866 repeated NanStatusHistogramBucket histogram_attach_session_status = 4;
867
868 // maximum number of concurrent publish sessions in a single app
869 optional int32 max_concurrent_publish_in_app = 5;
870
871 // maximum number of concurrent subscribe sessions in a single app
872 optional int32 max_concurrent_subscribe_in_app = 6;
873
874 // maximum number of concurrent discovery (publish+subscribe) sessions in a single app
875 optional int32 max_concurrent_discovery_sessions_in_app = 7;
876
877 // maximum number of concurrent publish sessions in the system
878 optional int32 max_concurrent_publish_in_system = 8;
879
880 // maximum number of concurrent subscribe sessions in the system
881 optional int32 max_concurrent_subscribe_in_system = 9;
882
883 // maximum number of concurrent discovery (publish+subscribe) sessions in the system
884 optional int32 max_concurrent_discovery_sessions_in_system = 10;
885
886 // histogram of publish request results
887 repeated NanStatusHistogramBucket histogram_publish_status = 11;
888
889 // histogram of subscribe request results
890 repeated NanStatusHistogramBucket histogram_subscribe_status = 12;
891
892 // number of unique apps which experienced a discovery session creation failure due to lack of
893 // resources
894 optional int32 num_apps_with_discovery_session_failure_out_of_resources = 13;
895
896 // histogram of create ndp request results
897 repeated NanStatusHistogramBucket histogram_request_ndp_status = 14;
898
899 // histogram of create ndp out-of-band (OOB) request results
900 repeated NanStatusHistogramBucket histogram_request_ndp_oob_status = 15;
901
902 // maximum number of concurrent active data-interfaces (NDI) in a single app
903 optional int32 max_concurrent_ndi_in_app = 19;
904
905 // maximum number of concurrent active data-interfaces (NDI) in the system
906 optional int32 max_concurrent_ndi_in_system = 20;
907
908 // maximum number of concurrent data-paths (NDP) in a single app
909 optional int32 max_concurrent_ndp_in_app = 21;
910
911 // maximum number of concurrent data-paths (NDP) in the system
912 optional int32 max_concurrent_ndp_in_system = 22;
913
914 // maximum number of concurrent secure data-paths (NDP) in a single app
915 optional int32 max_concurrent_secure_ndp_in_app = 23;
916
917 // maximum number of concurrent secure data-paths (NDP) in the system
918 optional int32 max_concurrent_secure_ndp_in_system = 24;
919
920 // maximum number of concurrent data-paths (NDP) per data-interface (NDI)
921 optional int32 max_concurrent_ndp_per_ndi = 25;
922
923 // histogram of durations of Aware being available
924 repeated HistogramBucket histogram_aware_available_duration_ms = 26;
925
926 // histogram of durations of Aware being enabled
927 repeated HistogramBucket histogram_aware_enabled_duration_ms = 27;
928
929 // histogram of duration (in ms) of attach sessions
930 repeated HistogramBucket histogram_attach_duration_ms = 28;
931
932 // histogram of duration (in ms) of publish sessions
933 repeated HistogramBucket histogram_publish_session_duration_ms = 29;
934
935 // histogram of duration (in ms) of subscribe sessions
936 repeated HistogramBucket histogram_subscribe_session_duration_ms = 30;
937
938 // histogram of duration (in ms) of data-paths (NDP)
939 repeated HistogramBucket histogram_ndp_session_duration_ms = 31;
940
941 // histogram of usage (in MB) of data-paths (NDP)
942 repeated HistogramBucket histogram_ndp_session_data_usage_mb = 32;
943
944 // histogram of usage (in MB) of data-path creation time (in ms) measured as request -> confirm
945 repeated HistogramBucket histogram_ndp_creation_time_ms = 33;
946
947 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: minimum
948 optional int64 ndp_creation_time_ms_min = 34;
949
950 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: maximum
951 optional int64 ndp_creation_time_ms_max = 35;
952
953 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: sum
954 optional int64 ndp_creation_time_ms_sum = 36;
955
956 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: sum of sq
957 optional int64 ndp_creation_time_ms_sum_of_sq = 37;
958
959 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: number of
960 // samples
961 optional int64 ndp_creation_time_ms_num_samples = 38;
962
963 // total time within the logging window that aware was available
964 optional int64 available_time_ms = 39;
965
966 // total time within the logging window that aware was enabled
967 optional int64 enabled_time_ms = 40;
968
Etan Cohenfa723572018-03-13 07:25:50 -0700969 // maximum number of concurrent publish sessions enabling ranging in a single app
970 optional int32 max_concurrent_publish_with_ranging_in_app = 41;
971
972 // maximum number of concurrent subscribe sessions specifying a geofence in a single app
973 optional int32 max_concurrent_subscribe_with_ranging_in_app = 42;
974
975 // maximum number of concurrent publish sessions enabling ranging in the system
976 optional int32 max_concurrent_publish_with_ranging_in_system = 43;
977
978 // maximum number of concurrent subscribe sessions specifying a geofence in the system
979 optional int32 max_concurrent_subscribe_with_ranging_in_system = 44;
980
981 // histogram of subscribe session geofence minimum (only when specified)
982 repeated HistogramBucket histogram_subscribe_geofence_min = 45;
983
984 // histogram of subscribe session geofence maximum (only when specified)
985 repeated HistogramBucket histogram_subscribe_geofence_max = 46;
986
987 // total number of subscribe sessions which enabled ranging
988 optional int32 num_subscribes_with_ranging = 47;
989
990 // total number of matches (service discovery indication) with ranging provided
991 optional int32 num_matches_with_ranging = 48;
992
993 // total number of matches (service discovery indication) for service discovery with ranging
994 // enabled which did not trigger ranging
995 optional int32 num_matches_without_ranging_for_ranging_enabled_subscribes = 49;
996
Etan Cohen737addc2017-04-26 08:01:57 -0700997 // Histogram bucket for Wi-Fi Aware logs. Range is [start, end)
998 message HistogramBucket {
999 // lower range of the bucket (inclusive)
1000 optional int64 start = 1;
1001
1002 // upper range of the bucket (exclusive)
1003 optional int64 end = 2;
1004
1005 // number of samples in the bucket
1006 optional int32 count = 3;
1007 }
1008
1009 // Status of various NAN operations
1010 enum NanStatusTypeEnum {
1011 // constant to be used by proto
1012 UNKNOWN = 0;
1013
1014 // NAN operation succeeded
1015 SUCCESS = 1;
1016
1017 // NAN Discovery Engine/Host driver failures
1018 INTERNAL_FAILURE = 2;
1019
1020 // NAN OTA failures
1021 PROTOCOL_FAILURE = 3;
1022
1023 // The publish/subscribe discovery session id is invalid
1024 INVALID_SESSION_ID = 4;
1025
1026 // Out of resources to fufill request
1027 NO_RESOURCES_AVAILABLE = 5;
1028
1029 // Invalid arguments passed
1030 INVALID_ARGS = 6;
1031
1032 // Invalid peer id
1033 INVALID_PEER_ID = 7;
1034
1035 // Invalid NAN data-path (ndp) id
1036 INVALID_NDP_ID = 8;
1037
1038 // Attempting to enable NAN when not available, e.g. wifi is disabled
1039 NAN_NOT_ALLOWED = 9;
1040
1041 // Over the air ACK not received
1042 NO_OTA_ACK = 10;
1043
1044 // Attempting to enable NAN when already enabled
1045 ALREADY_ENABLED = 11;
1046
1047 // Can't queue tx followup message foor transmission
1048 FOLLOWUP_TX_QUEUE_FULL = 12;
1049
1050 // Unsupported concurrency of NAN and another feature - NAN disabled
1051 UNSUPPORTED_CONCURRENCY_NAN_DISABLED = 13;
1052
1053 // Unknown NanStatusType
1054 UNKNOWN_HAL_STATUS = 14;
1055 }
1056
1057 // Histogram bucket for Wi-Fi Aware (NAN) status.
1058 message NanStatusHistogramBucket {
1059 // status type defining the bucket
1060 optional NanStatusTypeEnum nan_status_type = 1;
1061
1062 // number of samples in the bucket
1063 optional int32 count = 2;
1064 }
1065}
1066
Glen Kuhnee2d67c02017-04-25 13:08:29 -07001067// Data point used to build 'Number of Connectable Network' histograms
1068message NumConnectableNetworksBucket {
1069 // Number of connectable networks seen in a scan result
1070 optional int32 num_connectable_networks = 1 [default = 0];
1071
1072 // Number of scan results with num_connectable_networks
1073 optional int32 count = 2 [default = 0];
1074}
Mehdi Alizadehd9163cf2017-08-10 18:20:25 -07001075
1076// Pno scan metrics
1077// Here "Pno Scan" refers to the session of offloaded scans, these metrics count the result of a
1078// single session, and not the individual scans within that session.
1079message PnoScanMetrics {
1080 // Total number of attempts to offload pno scans
1081 optional int32 num_pno_scan_attempts = 1;
1082
1083 // Total number of pno scans failed
1084 optional int32 num_pno_scan_failed = 2;
1085
1086 // Number of pno scans started successfully over offload
1087 optional int32 num_pno_scan_started_over_offload = 3;
1088
1089 // Number of pno scans failed over offload
1090 optional int32 num_pno_scan_failed_over_offload = 4;
1091
1092 // Total number of pno scans that found any network
1093 optional int32 num_pno_found_network_events = 5;
1094}
Stephen Chenfc0facb2017-09-14 14:35:15 -07001095
1096// Number of occurrences for a particular "Connect to Network" Notification or
1097// notification Action.
1098message ConnectToNetworkNotificationAndActionCount {
1099
1100 // "Connect to Network" notifications
1101 enum Notification {
1102
1103 // Default
1104 NOTIFICATION_UNKNOWN = 0;
1105
1106 // Initial notification with a recommended network.
1107 NOTIFICATION_RECOMMEND_NETWORK = 1;
1108
1109 // Notification when connecting to the recommended network.
1110 NOTIFICATION_CONNECTING_TO_NETWORK = 2;
1111
1112 // Notification when successfully connected to the network.
1113 NOTIFICATION_CONNECTED_TO_NETWORK = 3;
1114
1115 // Notification when failed to connect to network.
1116 NOTIFICATION_FAILED_TO_CONNECT = 4;
1117 }
1118
1119 // "Connect to Network" notification actions
1120 enum Action {
1121
1122 // Default
1123 ACTION_UNKNOWN = 0;
1124
1125 // User dismissed the "Connect to Network" notification.
1126 ACTION_USER_DISMISSED_NOTIFICATION = 1;
1127
1128 // User tapped action button to connect to recommended network.
1129 ACTION_CONNECT_TO_NETWORK = 2;
1130
1131 // User tapped action button to open Wi-Fi Settings.
1132 ACTION_PICK_WIFI_NETWORK = 3;
1133
1134 // User tapped "Failed to connect" notification to open Wi-Fi Settings.
1135 ACTION_PICK_WIFI_NETWORK_AFTER_CONNECT_FAILURE = 4;
1136 }
1137
1138 // Recommenders of the "Connect to Network" notification
1139 enum Recommender {
1140
1141 // Default.
1142 RECOMMENDER_UNKNOWN = 0;
1143
1144 // Open Network Available recommender.
1145 RECOMMENDER_OPEN = 1;
1146 }
1147
1148 // Notification Type.
1149 optional Notification notification = 1;
1150
1151 // Action Type.
1152 optional Action action = 2;
1153
1154 // Recommender Type.
1155 optional Recommender recommender = 3;
1156
1157 // Occurrences of this action.
1158 optional int32 count = 4;
1159}
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001160
1161// SoftAP event tracking sessions and client counts
1162message SoftApConnectedClientsEvent {
1163
1164 // Soft AP event Types
1165 enum SoftApEventType {
1166
1167 // Soft AP is Up and ready for use
1168 SOFT_AP_UP = 0;
1169
1170 // Soft AP is Down
1171 SOFT_AP_DOWN = 1;
1172
1173 // Number of connected soft AP clients has changed
1174 NUM_CLIENTS_CHANGED = 2;
1175 }
1176
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001177 // Soft AP channel bandwidth types
1178 enum ChannelBandwidth {
1179
1180 BANDWIDTH_INVALID = 0;
1181
1182 BANDWIDTH_20_NOHT = 1;
1183
1184 BANDWIDTH_20 = 2;
1185
1186 BANDWIDTH_40 = 3;
1187
1188 BANDWIDTH_80 = 4;
1189
1190 BANDWIDTH_80P80 = 5;
1191
1192 BANDWIDTH_160 = 6;
1193 }
1194
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001195 // Type of event being recorded
1196 optional SoftApEventType event_type = 1;
1197
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001198 // Time passed since last boot in milliseconds
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001199 optional int64 time_stamp_millis = 2;
1200
1201 // Number of connected clients if event_type is NUM_CLIENTS_CHANGED, otherwise zero.
1202 optional int32 num_connected_clients = 3;
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001203
1204 // Channel frequency used for Soft AP
1205 optional int32 channel_frequency = 4;
1206
1207 // Channel bandwidth used for Soft AP
1208 optional ChannelBandwidth channel_bandwidth = 5;
Jong Wook Kim72c49ee2017-10-26 13:16:36 -07001209}
1210
1211// Wps connection metrics
1212// Keeps track of Wi-Fi Protected Setup usage
1213message WpsMetrics {
1214 // Total number of wps connection attempts
1215 optional int32 num_wps_attempts = 1;
1216
1217 // Total number of wps connection successes
1218 optional int32 num_wps_success = 2;
1219
1220 // Total number of wps failures on start
1221 optional int32 num_wps_start_failure = 3;
1222
1223 // Total number of wps overlap failure
1224 optional int32 num_wps_overlap_failure = 4;
1225
1226 // Total number of wps timeout failure
1227 optional int32 num_wps_timeout_failure = 5;
1228
1229 // Total number of other wps failure during connection
1230 optional int32 num_wps_other_connection_failure = 6;
1231
1232 // Total number of supplicant failure after wps
1233 optional int32 num_wps_supplicant_failure = 7;
1234
1235 // Total number of wps cancellation
1236 optional int32 num_wps_cancellation = 8;
1237}
Siddharth Rayac8b69a2018-01-27 18:05:44 -08001238
1239// Power stats for Wifi
1240message WifiPowerStats {
1241
1242 // Duration of log (ms)
1243 optional int64 logging_duration_ms = 1;
1244
1245 // Energy consumed by wifi (mAh)
1246 optional double energy_consumed_mah = 2;
1247
1248 // Amount of time wifi is in idle (ms)
1249 optional int64 idle_time_ms = 3;
1250
1251 // Amount of time wifi is in rx (ms)
1252 optional int64 rx_time_ms = 4;
1253
1254 // Amount of time wifi is in tx (ms)
1255 optional int64 tx_time_ms = 5;
Ningyuan Wang72886332017-12-20 16:17:33 -08001256}
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001257
1258// Metrics for Wifi Wake
1259message WifiWakeStats {
1260 // An individual session for Wifi Wake
1261 message Session {
1262 // A Wifi Wake lifecycle event
1263 message Event {
1264 // Elapsed time in milliseconds since start of session.
1265 optional int64 elapsed_time_millis = 1;
1266
1267 // Number of scans that have occurred since start of session.
1268 optional int32 elapsed_scans = 2;
1269 }
1270
1271 // Start time of session in milliseconds.
1272 optional int64 start_time_millis = 1;
1273
1274 // The number of networks the lock was initialized with at start.
1275 optional int32 locked_networks_at_start = 2;
1276
1277 // Event for unlocking the WakeupLock. Does not occur if lock was initialized with 0 networks.
1278 optional Event unlock_event = 3;
1279
1280 // Event for triggering wakeup.
1281 optional Event wakeup_event = 4;
1282
1283 // Event for WifiWake reset event. This event marks the end of a session.
1284 optional Event reset_event = 5;
1285 }
1286
1287 // Total number of sessions for Wifi Wake.
1288 optional int32 num_sessions = 1;
1289
1290 // Session information for every Wifi Wake session (up to a maximum of 10).
1291 repeated Session sessions = 2;
1292}