blob: 4117148818e8ee498fa3ed45eb6c83ad03ffe176 [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;
xshu63522622018-03-15 16:48:29 -0700425
426 // WifiLastResortWatchdog time milliseconds delta between trigger and first connection success
427 optional int64 watchdog_trigger_to_connection_success_duration_ms = 107 [default = -1];
428
429 // The number of times wifi experienced failures after watchdog has already been triggered and is
430 // waiting for a connection success
431 optional int64 watchdog_total_connection_failure_count_after_trigger = 108;
xshu39cef4d2018-03-23 15:14:02 -0700432
433 // Number of times DFS channel scans are requested in single scan requests.
434 optional int32 num_oneshot_has_dfs_channel_scans = 109;
Etan Cohen4ec8dd32018-03-16 09:43:01 -0700435
436 // Wi-Fi RTT metrics
437 optional WifiRttLog wifi_rtt_log = 110;
Jong Wook Kim01ad38b2018-04-09 10:14:11 -0700438
439 // Flag which indicates if Connected MAC Randomization is enabled
440 optional bool is_mac_randomization_on = 111 [default = false];
Roshan Pius6de7a672018-04-24 16:30:13 -0700441
442 // Number of radio mode changes to MCC (Multi channel concurrency).
443 optional int32 num_radio_mode_change_to_mcc = 112;
444
445 // Number of radio mode changes to SCC (Single channel concurrency).
446 optional int32 num_radio_mode_change_to_scc = 113;
447
448 // Number of radio mode changes to SBS (Single band simultaneous).
449 optional int32 num_radio_mode_change_to_sbs = 114;
450
451 // Number of radio mode changes to DBS (Dual band simultaneous).
452 optional int32 num_radio_mode_change_to_dbs = 115;
Roshan Piusd3a58cb2018-05-14 15:53:44 -0700453
454 // Number of times the firmware picked a SoftAp channel not satisfying user band preference.
455 optional int32 num_soft_ap_user_band_preference_unsatisfied = 116;
Michael Plass8a779ac2018-05-09 16:56:52 -0700456
457 // Identifier for experimental scoring parameter settings.
458 optional string score_experiment_id = 117;
459
xshub483b722018-05-22 15:46:26 -0700460 // Data on wifi radio usage
461 optional WifiRadioUsage wifi_radio_usage = 118;
Jong Wook Kim411cab92018-04-26 15:09:23 -0700462
463 // Stores settings values used for metrics testing.
464 optional ExperimentValues experiment_values = 119;
465
466 // List of WifiIsUnusableEvents which get logged when we notice that WiFi is unusable.
467 // Collected only when WIFI_IS_UNUSABLE_EVENT_METRICS_ENABLED Settings is enabled.
468 repeated WifiIsUnusableEvent wifi_is_unusable_event_list = 120;
Glen Kuhne94814572016-10-25 12:40:35 -0700469}
470
471// Information that gets logged for every WiFi connection.
472message RouterFingerPrint {
473
474 enum RoamType {
475
476 // Type is unknown.
477 ROAM_TYPE_UNKNOWN = 0;
478
479 // No roaming - usually happens on a single band (2.4 GHz) router.
480 ROAM_TYPE_NONE = 1;
481
482 // Enterprise router.
483 ROAM_TYPE_ENTERPRISE = 2;
484
485 // DBDC => Dual Band Dual Concurrent essentially a router that
486 // supports both 2.4 GHz and 5 GHz bands.
487 ROAM_TYPE_DBDC = 3;
488 }
489
490 enum Auth {
491
492 // Auth is unknown.
493 AUTH_UNKNOWN = 0;
494
495 // No authentication.
496 AUTH_OPEN = 1;
497
498 // If the router uses a personal authentication.
499 AUTH_PERSONAL = 2;
500
501 // If the router is setup for enterprise authentication.
502 AUTH_ENTERPRISE = 3;
503 }
504
505 enum RouterTechnology {
506
507 // Router is unknown.
508 ROUTER_TECH_UNKNOWN = 0;
509
510 // Router Channel A.
511 ROUTER_TECH_A = 1;
512
513 // Router Channel B.
514 ROUTER_TECH_B = 2;
515
516 // Router Channel G.
517 ROUTER_TECH_G = 3;
518
519 // Router Channel N.
520 ROUTER_TECH_N = 4;
521
522 // Router Channel AC.
523 ROUTER_TECH_AC = 5;
524
525 // When the channel is not one of the above.
526 ROUTER_TECH_OTHER = 6;
527 }
528
529 optional RoamType roam_type = 1;
530
531 // Channel on which the connection takes place.
532 optional int32 channel_info = 2;
533
534 // DTIM setting of the router.
535 optional int32 dtim = 3;
536
537 // Authentication scheme of the router.
538 optional Auth authentication = 4;
539
540 // If the router is hidden.
541 optional bool hidden = 5;
542
543 // Channel information.
544 optional RouterTechnology router_technology = 6;
545
546 // whether ipv6 is supported.
547 optional bool supports_ipv6 = 7;
548
549 // If the router is a passpoint / hotspot 2.0 network
550 optional bool passpoint = 8;
551}
552
553message ConnectionEvent {
554
555 // Roam Type.
556 enum RoamType {
557
558 // Type is unknown.
559 ROAM_UNKNOWN = 0;
560
561 // No roaming.
562 ROAM_NONE = 1;
563
564 // DBDC roaming.
565 ROAM_DBDC = 2;
566
567 // Enterprise roaming.
568 ROAM_ENTERPRISE = 3;
569
570 // User selected roaming.
571 ROAM_USER_SELECTED = 4;
572
573 // Unrelated.
574 ROAM_UNRELATED = 5;
575 }
576
577 // Connectivity Level Failure.
578 enum ConnectivityLevelFailure {
579
580 // Failure is unknown.
581 HLF_UNKNOWN = 0;
582
583 // No failure.
584 HLF_NONE = 1;
585
586 // DHCP failure.
587 HLF_DHCP = 2;
588
589 // No internet connection.
590 HLF_NO_INTERNET = 3;
591
592 // No internet connection.
593 HLF_UNWANTED = 4;
594 }
595
596 // Start time of the connection.
597 optional int64 start_time_millis = 1;// [(datapol.semantic_type) = ST_TIMESTAMP];
598
599 // Duration to connect.
600 optional int32 duration_taken_to_connect_millis = 2;
601
602 // Router information.
603 optional RouterFingerPrint router_fingerprint = 3;
604
605 // RSSI at the start of the connection.
606 optional int32 signal_strength = 4;
607
608 // Roam Type.
609 optional RoamType roam_type = 5;
610
611 // Result of the connection.
612 optional int32 connection_result = 6;
613
614 // Reasons for level 2 failure (needs to be coordinated with wpa-supplicant).
615 optional int32 level_2_failure_code = 7;
616
617 // Failures that happen at the connectivity layer.
618 optional ConnectivityLevelFailure connectivity_level_failure_code = 8;
619
620 // Has bug report been taken.
621 optional bool automatic_bug_report_taken = 9;
622}
623
624// Number of occurrences of a specific RSSI poll rssi value
625message RssiPollCount {
626 // RSSI
627 optional int32 rssi = 1;
628
629 // Number of RSSI polls with 'rssi'
630 optional int32 count = 2;
xshu122886e2018-05-16 15:38:49 -0700631
632 // Beacon frequency of the channel in MHz
633 optional int32 frequency = 3;
Glen Kuhne94814572016-10-25 12:40:35 -0700634}
635
636// Number of occurrences of a specific alert reason value
637message AlertReasonCount {
638 // Alert reason
639 optional int32 reason = 1;
640
641 // Number of alerts with |reason|.
642 optional int32 count = 2;
643}
644
645// Counts the number of instances of a specific Wifi Score calculated by WifiScoreReport
646message WifiScoreCount {
647 // Wifi Score
648 optional int32 score = 1;
649
650 // Number of Wifi score reports with this score
651 optional int32 count = 2;
652}
653
654// Number of occurrences of Soft AP session durations
655message SoftApDurationBucket {
656 // Bucket covers duration : [duration_sec, duration_sec + bucket_size_sec)
657 // The (inclusive) lower bound of Soft AP session duration represented by this bucket
658 optional int32 duration_sec = 1;
659
660 // The size of this bucket
661 optional int32 bucket_size_sec = 2;
662
663 // Number of soft AP session durations that fit into this bucket
664 optional int32 count = 3;
665}
666
667// Number of occurrences of a soft AP session return code
668message SoftApReturnCodeCount {
Rebecca Silberstein28d9de22017-01-24 10:42:59 -0800669
670 enum SoftApStartResult {
671
672 // SoftApManager return code unknown
673 SOFT_AP_RETURN_CODE_UNKNOWN = 0;
674
675 // SoftAp started successfully
676 SOFT_AP_STARTED_SUCCESSFULLY = 1;
677
678 // Catch all for failures with no specific failure reason
679 SOFT_AP_FAILED_GENERAL_ERROR = 2;
680
681 // SoftAp failed to start due to NO_CHANNEL error
682 SOFT_AP_FAILED_NO_CHANNEL = 3;
683 }
684
685 // Historical, no longer used for writing as of 01/2017.
686 optional int32 return_code = 1 [deprecated = true];
Glen Kuhne94814572016-10-25 12:40:35 -0700687
688 // Occurrences of this soft AP return code
689 optional int32 count = 2;
Rebecca Silberstein28d9de22017-01-24 10:42:59 -0800690
691 // Result of attempt to start SoftAp
692 optional SoftApStartResult start_result = 3;
Glen Kuhne94814572016-10-25 12:40:35 -0700693}
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700694
695message StaEvent {
696 message ConfigInfo {
697 // The set of key management protocols supported by this configuration.
698 optional uint32 allowed_key_management = 1 [default = 0];
699
700 // The set of security protocols supported by this configuration.
701 optional uint32 allowed_protocols = 2 [default = 0];
702
703 // The set of authentication protocols supported by this configuration.
704 optional uint32 allowed_auth_algorithms = 3 [default = 0];
705
706 // The set of pairwise ciphers for WPA supported by this configuration.
707 optional uint32 allowed_pairwise_ciphers = 4 [default = 0];
708
709 // The set of group ciphers supported by this configuration.
710 optional uint32 allowed_group_ciphers = 5;
711
712 // Is this a 'hidden network'
713 optional bool hidden_ssid = 6;
714
715 // Is this a Hotspot 2.0 / passpoint network
716 optional bool is_passpoint = 7;
717
718 // Is this an 'ephemeral' network (Not in saved network list, recommended externally)
719 optional bool is_ephemeral = 8;
720
721 // Has a successful connection ever been established using this WifiConfiguration
722 optional bool has_ever_connected = 9;
723
724 // RSSI of the scan result candidate associated with this WifiConfiguration
725 optional int32 scan_rssi = 10 [default = -127];
726
727 // Frequency of the scan result candidate associated with this WifiConfiguration
728 optional int32 scan_freq = 11 [default = -1];
729 }
730
731 enum EventType {
732 // Default/Invalid event
733 TYPE_UNKNOWN = 0;
734
735 // Supplicant Association Rejection event. Code contains the 802.11
736 TYPE_ASSOCIATION_REJECTION_EVENT = 1;
737
738 // Supplicant L2 event,
739 TYPE_AUTHENTICATION_FAILURE_EVENT = 2;
740
741 // Supplicant L2 event
742 TYPE_NETWORK_CONNECTION_EVENT = 3;
743
744 // Supplicant L2 event
745 TYPE_NETWORK_DISCONNECTION_EVENT = 4;
746
747 // Supplicant L2 event
748 TYPE_SUPPLICANT_STATE_CHANGE_EVENT = 5;
749
750 // Supplicant L2 event
751 TYPE_CMD_ASSOCIATED_BSSID = 6;
752
753 // IP Manager successfully completed IP Provisioning
754 TYPE_CMD_IP_CONFIGURATION_SUCCESSFUL = 7;
755
756 // IP Manager failed to complete IP Provisioning
757 TYPE_CMD_IP_CONFIGURATION_LOST = 8;
758
759 // IP Manager lost reachability to network neighbors
760 TYPE_CMD_IP_REACHABILITY_LOST = 9;
761
762 // Indicator that Supplicant is targeting a BSSID for roam/connection
763 TYPE_CMD_TARGET_BSSID = 10;
764
765 // Wifi framework is initiating a connection attempt
766 TYPE_CMD_START_CONNECT = 11;
767
768 // Wifi framework is initiating a roaming connection attempt
769 TYPE_CMD_START_ROAM = 12;
770
771 // SystemAPI connect() command, Settings App
772 TYPE_CONNECT_NETWORK = 13;
773
774 // Network Agent has validated the internet connection (Captive Portal Check success, or user
775 // validation)
776 TYPE_NETWORK_AGENT_VALID_NETWORK = 14;
777
778 // Framework initiated disconnect. Sometimes generated to give an extra reason for a disconnect
779 // Should typically be followed by a NETWORK_DISCONNECTION_EVENT with a local_gen = true
780 TYPE_FRAMEWORK_DISCONNECT = 15;
Michael Plassbb367b62017-10-06 10:29:51 -0700781
782 // The NetworkAgent score for wifi has changed in a way that may impact
783 // connectivity
784 TYPE_SCORE_BREACH = 16;
Jong Wook Kim01ad38b2018-04-09 10:14:11 -0700785
786 // Framework changed Sta interface MAC address
787 TYPE_MAC_CHANGE = 17;
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700788 }
789
790 enum FrameworkDisconnectReason {
791 // default/none/unknown value
792 DISCONNECT_UNKNOWN = 0;
793
794 // API DISCONNECT
795 DISCONNECT_API = 1;
796
797 // Some framework internal reason (generic)
798 DISCONNECT_GENERIC = 2;
799
800 // Network Agent network validation failed, user signaled network unwanted
801 DISCONNECT_UNWANTED = 3;
802
803 // Roaming timed out
804 DISCONNECT_ROAM_WATCHDOG_TIMER = 4;
805
806 // P2P service requested wifi disconnect
807 DISCONNECT_P2P_DISCONNECT_WIFI_REQUEST = 5;
808
809 // SIM was removed while using a SIM config
810 DISCONNECT_RESET_SIM_NETWORKS = 6;
811 }
812
813 // Authentication Failure reasons as reported through the API.
814 enum AuthFailureReason {
815 // Unknown default
816 AUTH_FAILURE_UNKNOWN = 0;
817
818 // The reason code if there is no error during authentication. It could also imply that there no
819 // authentication in progress,
820 AUTH_FAILURE_NONE = 1;
821
822 // The reason code if there was a timeout authenticating.
823 AUTH_FAILURE_TIMEOUT = 2;
824
825 // The reason code if there was a wrong password while authenticating.
826 AUTH_FAILURE_WRONG_PSWD = 3;
827
828 // The reason code if there was EAP failure while authenticating.
829 AUTH_FAILURE_EAP_FAILURE = 4;
830 }
831
832 // What event was this
833 optional EventType type = 1;
834
835 // 80211 death reason code, relevant to NETWORK_DISCONNECTION_EVENTs
836 optional int32 reason = 2 [default = -1];
837
838 // 80211 Association Status code, relevant to ASSOCIATION_REJECTION_EVENTs
839 optional int32 status = 3 [default = -1];
840
841 // Designates whether a NETWORK_DISCONNECT_EVENT was by the STA or AP
842 optional bool local_gen = 4 [default = false];
843
844 // Network information from the WifiConfiguration of a framework initiated connection attempt
845 optional ConfigInfo config_info = 5;
846
847 // RSSI from the last rssi poll (Only valid for active connections)
848 optional int32 last_rssi = 6 [default = -127];
849
850 // Link speed from the last rssi poll (Only valid for active connections)
851 optional int32 last_link_speed = 7 [default = -1];
852
853 // Frequency from the last rssi poll (Only valid for active connections)
854 optional int32 last_freq = 8 [default = -1];
855
856 // Enum used to define bit positions in the supplicant_state_change_bitmask
857 // See {@code frameworks/base/wifi/java/android/net/wifi/SupplicantState.java} for documentation
858 enum SupplicantState {
859 STATE_DISCONNECTED = 0;
860
861 STATE_INTERFACE_DISABLED = 1;
862
863 STATE_INACTIVE = 2;
864
865 STATE_SCANNING = 3;
866
867 STATE_AUTHENTICATING = 4;
868
869 STATE_ASSOCIATING = 5;
870
871 STATE_ASSOCIATED = 6;
872
873 STATE_FOUR_WAY_HANDSHAKE = 7;
874
875 STATE_GROUP_HANDSHAKE = 8;
876
877 STATE_COMPLETED = 9;
878
879 STATE_DORMANT = 10;
880
881 STATE_UNINITIALIZED = 11;
882
883 STATE_INVALID = 12;
884 }
885
Jong Wook Kim411cab92018-04-26 15:09:23 -0700886 // Bit mask of all supplicant state changes that occurred since the last event
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700887 optional uint32 supplicant_state_changes_bitmask = 9 [default = 0];
888
889 // The number of milliseconds that have elapsed since the device booted
890 optional int64 start_time_millis = 10 [default = 0];
891
892 optional FrameworkDisconnectReason framework_disconnect_reason = 11 [default = DISCONNECT_UNKNOWN];
893
Jong Wook Kim411cab92018-04-26 15:09:23 -0700894 // Flag which indicates if an association rejection event occurred due to a timeout
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700895 optional bool association_timed_out = 12 [default = false];
896
897 // Authentication failure reason, as reported by WifiManager (calculated from state & deauth code)
898 optional AuthFailureReason auth_failure_reason = 13 [default = AUTH_FAILURE_UNKNOWN];
Michael Plassbb367b62017-10-06 10:29:51 -0700899
900 // NetworkAgent score of connected wifi
901 optional int32 last_score = 14 [default = -1];
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700902}
Etan Cohen737addc2017-04-26 08:01:57 -0700903
904// Wi-Fi Aware metrics
905message WifiAwareLog {
906 // total number of unique apps that used Aware (measured on attach)
907 optional int32 num_apps = 1;
908
909 // total number of unique apps that used an identity callback when attaching
910 optional int32 num_apps_using_identity_callback = 2;
911
912 // maximum number of attaches for an app
913 optional int32 max_concurrent_attach_sessions_in_app = 3;
914
915 // histogram of attach request results
916 repeated NanStatusHistogramBucket histogram_attach_session_status = 4;
917
918 // maximum number of concurrent publish sessions in a single app
919 optional int32 max_concurrent_publish_in_app = 5;
920
921 // maximum number of concurrent subscribe sessions in a single app
922 optional int32 max_concurrent_subscribe_in_app = 6;
923
924 // maximum number of concurrent discovery (publish+subscribe) sessions in a single app
925 optional int32 max_concurrent_discovery_sessions_in_app = 7;
926
927 // maximum number of concurrent publish sessions in the system
928 optional int32 max_concurrent_publish_in_system = 8;
929
930 // maximum number of concurrent subscribe sessions in the system
931 optional int32 max_concurrent_subscribe_in_system = 9;
932
933 // maximum number of concurrent discovery (publish+subscribe) sessions in the system
934 optional int32 max_concurrent_discovery_sessions_in_system = 10;
935
936 // histogram of publish request results
937 repeated NanStatusHistogramBucket histogram_publish_status = 11;
938
939 // histogram of subscribe request results
940 repeated NanStatusHistogramBucket histogram_subscribe_status = 12;
941
942 // number of unique apps which experienced a discovery session creation failure due to lack of
943 // resources
944 optional int32 num_apps_with_discovery_session_failure_out_of_resources = 13;
945
946 // histogram of create ndp request results
947 repeated NanStatusHistogramBucket histogram_request_ndp_status = 14;
948
949 // histogram of create ndp out-of-band (OOB) request results
950 repeated NanStatusHistogramBucket histogram_request_ndp_oob_status = 15;
951
952 // maximum number of concurrent active data-interfaces (NDI) in a single app
953 optional int32 max_concurrent_ndi_in_app = 19;
954
955 // maximum number of concurrent active data-interfaces (NDI) in the system
956 optional int32 max_concurrent_ndi_in_system = 20;
957
958 // maximum number of concurrent data-paths (NDP) in a single app
959 optional int32 max_concurrent_ndp_in_app = 21;
960
961 // maximum number of concurrent data-paths (NDP) in the system
962 optional int32 max_concurrent_ndp_in_system = 22;
963
964 // maximum number of concurrent secure data-paths (NDP) in a single app
965 optional int32 max_concurrent_secure_ndp_in_app = 23;
966
967 // maximum number of concurrent secure data-paths (NDP) in the system
968 optional int32 max_concurrent_secure_ndp_in_system = 24;
969
970 // maximum number of concurrent data-paths (NDP) per data-interface (NDI)
971 optional int32 max_concurrent_ndp_per_ndi = 25;
972
973 // histogram of durations of Aware being available
974 repeated HistogramBucket histogram_aware_available_duration_ms = 26;
975
976 // histogram of durations of Aware being enabled
977 repeated HistogramBucket histogram_aware_enabled_duration_ms = 27;
978
979 // histogram of duration (in ms) of attach sessions
980 repeated HistogramBucket histogram_attach_duration_ms = 28;
981
982 // histogram of duration (in ms) of publish sessions
983 repeated HistogramBucket histogram_publish_session_duration_ms = 29;
984
985 // histogram of duration (in ms) of subscribe sessions
986 repeated HistogramBucket histogram_subscribe_session_duration_ms = 30;
987
988 // histogram of duration (in ms) of data-paths (NDP)
989 repeated HistogramBucket histogram_ndp_session_duration_ms = 31;
990
991 // histogram of usage (in MB) of data-paths (NDP)
992 repeated HistogramBucket histogram_ndp_session_data_usage_mb = 32;
993
994 // histogram of usage (in MB) of data-path creation time (in ms) measured as request -> confirm
995 repeated HistogramBucket histogram_ndp_creation_time_ms = 33;
996
997 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: minimum
998 optional int64 ndp_creation_time_ms_min = 34;
999
1000 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: maximum
1001 optional int64 ndp_creation_time_ms_max = 35;
1002
1003 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: sum
1004 optional int64 ndp_creation_time_ms_sum = 36;
1005
1006 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: sum of sq
1007 optional int64 ndp_creation_time_ms_sum_of_sq = 37;
1008
1009 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: number of
1010 // samples
1011 optional int64 ndp_creation_time_ms_num_samples = 38;
1012
1013 // total time within the logging window that aware was available
1014 optional int64 available_time_ms = 39;
1015
1016 // total time within the logging window that aware was enabled
1017 optional int64 enabled_time_ms = 40;
1018
Etan Cohenfa723572018-03-13 07:25:50 -07001019 // maximum number of concurrent publish sessions enabling ranging in a single app
1020 optional int32 max_concurrent_publish_with_ranging_in_app = 41;
1021
1022 // maximum number of concurrent subscribe sessions specifying a geofence in a single app
1023 optional int32 max_concurrent_subscribe_with_ranging_in_app = 42;
1024
1025 // maximum number of concurrent publish sessions enabling ranging in the system
1026 optional int32 max_concurrent_publish_with_ranging_in_system = 43;
1027
1028 // maximum number of concurrent subscribe sessions specifying a geofence in the system
1029 optional int32 max_concurrent_subscribe_with_ranging_in_system = 44;
1030
1031 // histogram of subscribe session geofence minimum (only when specified)
1032 repeated HistogramBucket histogram_subscribe_geofence_min = 45;
1033
1034 // histogram of subscribe session geofence maximum (only when specified)
1035 repeated HistogramBucket histogram_subscribe_geofence_max = 46;
1036
1037 // total number of subscribe sessions which enabled ranging
1038 optional int32 num_subscribes_with_ranging = 47;
1039
1040 // total number of matches (service discovery indication) with ranging provided
1041 optional int32 num_matches_with_ranging = 48;
1042
1043 // total number of matches (service discovery indication) for service discovery with ranging
1044 // enabled which did not trigger ranging
1045 optional int32 num_matches_without_ranging_for_ranging_enabled_subscribes = 49;
1046
Etan Cohen737addc2017-04-26 08:01:57 -07001047 // Histogram bucket for Wi-Fi Aware logs. Range is [start, end)
1048 message HistogramBucket {
1049 // lower range of the bucket (inclusive)
1050 optional int64 start = 1;
1051
1052 // upper range of the bucket (exclusive)
1053 optional int64 end = 2;
1054
1055 // number of samples in the bucket
1056 optional int32 count = 3;
1057 }
1058
1059 // Status of various NAN operations
1060 enum NanStatusTypeEnum {
1061 // constant to be used by proto
1062 UNKNOWN = 0;
1063
1064 // NAN operation succeeded
1065 SUCCESS = 1;
1066
1067 // NAN Discovery Engine/Host driver failures
1068 INTERNAL_FAILURE = 2;
1069
1070 // NAN OTA failures
1071 PROTOCOL_FAILURE = 3;
1072
1073 // The publish/subscribe discovery session id is invalid
1074 INVALID_SESSION_ID = 4;
1075
1076 // Out of resources to fufill request
1077 NO_RESOURCES_AVAILABLE = 5;
1078
1079 // Invalid arguments passed
1080 INVALID_ARGS = 6;
1081
1082 // Invalid peer id
1083 INVALID_PEER_ID = 7;
1084
1085 // Invalid NAN data-path (ndp) id
1086 INVALID_NDP_ID = 8;
1087
1088 // Attempting to enable NAN when not available, e.g. wifi is disabled
1089 NAN_NOT_ALLOWED = 9;
1090
1091 // Over the air ACK not received
1092 NO_OTA_ACK = 10;
1093
1094 // Attempting to enable NAN when already enabled
1095 ALREADY_ENABLED = 11;
1096
1097 // Can't queue tx followup message foor transmission
1098 FOLLOWUP_TX_QUEUE_FULL = 12;
1099
1100 // Unsupported concurrency of NAN and another feature - NAN disabled
1101 UNSUPPORTED_CONCURRENCY_NAN_DISABLED = 13;
1102
1103 // Unknown NanStatusType
1104 UNKNOWN_HAL_STATUS = 14;
1105 }
1106
1107 // Histogram bucket for Wi-Fi Aware (NAN) status.
1108 message NanStatusHistogramBucket {
1109 // status type defining the bucket
1110 optional NanStatusTypeEnum nan_status_type = 1;
1111
1112 // number of samples in the bucket
1113 optional int32 count = 2;
1114 }
1115}
1116
Glen Kuhnee2d67c02017-04-25 13:08:29 -07001117// Data point used to build 'Number of Connectable Network' histograms
1118message NumConnectableNetworksBucket {
1119 // Number of connectable networks seen in a scan result
1120 optional int32 num_connectable_networks = 1 [default = 0];
1121
1122 // Number of scan results with num_connectable_networks
1123 optional int32 count = 2 [default = 0];
1124}
Mehdi Alizadehd9163cf2017-08-10 18:20:25 -07001125
1126// Pno scan metrics
1127// Here "Pno Scan" refers to the session of offloaded scans, these metrics count the result of a
1128// single session, and not the individual scans within that session.
1129message PnoScanMetrics {
1130 // Total number of attempts to offload pno scans
1131 optional int32 num_pno_scan_attempts = 1;
1132
1133 // Total number of pno scans failed
1134 optional int32 num_pno_scan_failed = 2;
1135
1136 // Number of pno scans started successfully over offload
1137 optional int32 num_pno_scan_started_over_offload = 3;
1138
1139 // Number of pno scans failed over offload
1140 optional int32 num_pno_scan_failed_over_offload = 4;
1141
1142 // Total number of pno scans that found any network
1143 optional int32 num_pno_found_network_events = 5;
1144}
Stephen Chenfc0facb2017-09-14 14:35:15 -07001145
1146// Number of occurrences for a particular "Connect to Network" Notification or
1147// notification Action.
1148message ConnectToNetworkNotificationAndActionCount {
1149
1150 // "Connect to Network" notifications
1151 enum Notification {
1152
1153 // Default
1154 NOTIFICATION_UNKNOWN = 0;
1155
1156 // Initial notification with a recommended network.
1157 NOTIFICATION_RECOMMEND_NETWORK = 1;
1158
1159 // Notification when connecting to the recommended network.
1160 NOTIFICATION_CONNECTING_TO_NETWORK = 2;
1161
1162 // Notification when successfully connected to the network.
1163 NOTIFICATION_CONNECTED_TO_NETWORK = 3;
1164
1165 // Notification when failed to connect to network.
1166 NOTIFICATION_FAILED_TO_CONNECT = 4;
1167 }
1168
1169 // "Connect to Network" notification actions
1170 enum Action {
1171
1172 // Default
1173 ACTION_UNKNOWN = 0;
1174
1175 // User dismissed the "Connect to Network" notification.
1176 ACTION_USER_DISMISSED_NOTIFICATION = 1;
1177
1178 // User tapped action button to connect to recommended network.
1179 ACTION_CONNECT_TO_NETWORK = 2;
1180
1181 // User tapped action button to open Wi-Fi Settings.
1182 ACTION_PICK_WIFI_NETWORK = 3;
1183
1184 // User tapped "Failed to connect" notification to open Wi-Fi Settings.
1185 ACTION_PICK_WIFI_NETWORK_AFTER_CONNECT_FAILURE = 4;
1186 }
1187
1188 // Recommenders of the "Connect to Network" notification
1189 enum Recommender {
1190
1191 // Default.
1192 RECOMMENDER_UNKNOWN = 0;
1193
1194 // Open Network Available recommender.
1195 RECOMMENDER_OPEN = 1;
1196 }
1197
1198 // Notification Type.
1199 optional Notification notification = 1;
1200
1201 // Action Type.
1202 optional Action action = 2;
1203
1204 // Recommender Type.
1205 optional Recommender recommender = 3;
1206
1207 // Occurrences of this action.
1208 optional int32 count = 4;
1209}
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001210
1211// SoftAP event tracking sessions and client counts
1212message SoftApConnectedClientsEvent {
1213
1214 // Soft AP event Types
1215 enum SoftApEventType {
1216
1217 // Soft AP is Up and ready for use
1218 SOFT_AP_UP = 0;
1219
1220 // Soft AP is Down
1221 SOFT_AP_DOWN = 1;
1222
1223 // Number of connected soft AP clients has changed
1224 NUM_CLIENTS_CHANGED = 2;
1225 }
1226
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001227 // Soft AP channel bandwidth types
1228 enum ChannelBandwidth {
1229
1230 BANDWIDTH_INVALID = 0;
1231
1232 BANDWIDTH_20_NOHT = 1;
1233
1234 BANDWIDTH_20 = 2;
1235
1236 BANDWIDTH_40 = 3;
1237
1238 BANDWIDTH_80 = 4;
1239
1240 BANDWIDTH_80P80 = 5;
1241
1242 BANDWIDTH_160 = 6;
1243 }
1244
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001245 // Type of event being recorded
1246 optional SoftApEventType event_type = 1;
1247
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001248 // Time passed since last boot in milliseconds
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001249 optional int64 time_stamp_millis = 2;
1250
1251 // Number of connected clients if event_type is NUM_CLIENTS_CHANGED, otherwise zero.
1252 optional int32 num_connected_clients = 3;
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001253
1254 // Channel frequency used for Soft AP
1255 optional int32 channel_frequency = 4;
1256
1257 // Channel bandwidth used for Soft AP
1258 optional ChannelBandwidth channel_bandwidth = 5;
Jong Wook Kim72c49ee2017-10-26 13:16:36 -07001259}
1260
1261// Wps connection metrics
1262// Keeps track of Wi-Fi Protected Setup usage
1263message WpsMetrics {
1264 // Total number of wps connection attempts
1265 optional int32 num_wps_attempts = 1;
1266
1267 // Total number of wps connection successes
1268 optional int32 num_wps_success = 2;
1269
1270 // Total number of wps failures on start
1271 optional int32 num_wps_start_failure = 3;
1272
1273 // Total number of wps overlap failure
1274 optional int32 num_wps_overlap_failure = 4;
1275
1276 // Total number of wps timeout failure
1277 optional int32 num_wps_timeout_failure = 5;
1278
1279 // Total number of other wps failure during connection
1280 optional int32 num_wps_other_connection_failure = 6;
1281
1282 // Total number of supplicant failure after wps
1283 optional int32 num_wps_supplicant_failure = 7;
1284
1285 // Total number of wps cancellation
1286 optional int32 num_wps_cancellation = 8;
1287}
Siddharth Rayac8b69a2018-01-27 18:05:44 -08001288
1289// Power stats for Wifi
1290message WifiPowerStats {
1291
1292 // Duration of log (ms)
1293 optional int64 logging_duration_ms = 1;
1294
1295 // Energy consumed by wifi (mAh)
1296 optional double energy_consumed_mah = 2;
1297
1298 // Amount of time wifi is in idle (ms)
1299 optional int64 idle_time_ms = 3;
1300
1301 // Amount of time wifi is in rx (ms)
1302 optional int64 rx_time_ms = 4;
1303
1304 // Amount of time wifi is in tx (ms)
1305 optional int64 tx_time_ms = 5;
Ningyuan Wang72886332017-12-20 16:17:33 -08001306}
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001307
1308// Metrics for Wifi Wake
1309message WifiWakeStats {
1310 // An individual session for Wifi Wake
1311 message Session {
1312 // A Wifi Wake lifecycle event
1313 message Event {
1314 // Elapsed time in milliseconds since start of session.
1315 optional int64 elapsed_time_millis = 1;
1316
1317 // Number of scans that have occurred since start of session.
1318 optional int32 elapsed_scans = 2;
1319 }
1320
1321 // Start time of session in milliseconds.
1322 optional int64 start_time_millis = 1;
1323
Eric Schwarzenbach3cad6242018-03-26 10:23:40 -07001324 // The number of networks the lock was provided with at start.
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001325 optional int32 locked_networks_at_start = 2;
1326
Eric Schwarzenbach3cad6242018-03-26 10:23:40 -07001327 // The number of networks in the lock at the time of the initialize event. Only valid if
1328 // initialize_event is recorded.
1329 optional int32 locked_networks_at_initialize = 6;
1330
1331 // Event for fully initializing the WakeupLock (i.e. WakeupLock is "locked").
1332 optional Event initialize_event = 7;
1333
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001334 // Event for unlocking the WakeupLock. Does not occur if lock was initialized with 0 networks.
1335 optional Event unlock_event = 3;
1336
1337 // Event for triggering wakeup.
1338 optional Event wakeup_event = 4;
1339
1340 // Event for WifiWake reset event. This event marks the end of a session.
1341 optional Event reset_event = 5;
1342 }
1343
1344 // Total number of sessions for Wifi Wake.
1345 optional int32 num_sessions = 1;
1346
1347 // Session information for every Wifi Wake session (up to a maximum of 10).
1348 repeated Session sessions = 2;
Eric Schwarzenbach3cad6242018-03-26 10:23:40 -07001349
1350 // Number of ignored calls to start (due to WakeupController already being active).
1351 optional int32 num_ignored_starts = 3;
1352
1353 // Number of Wifi Wake sessions that have recorded wakeup events.
1354 optional int32 num_wakeups = 4;
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001355}
Etan Cohen4ec8dd32018-03-16 09:43:01 -07001356
1357// Metrics for Wi-Fi RTT
1358message WifiRttLog {
1359 // Number of RTT request API calls
1360 optional int32 num_requests = 1;
1361
1362 // Histogram of RTT operation overall status
1363 repeated RttOverallStatusHistogramBucket histogram_overall_status = 2;
1364
1365 // RTT to Access Points metrics
1366 optional RttToPeerLog rtt_to_ap = 3;
1367
1368 // RTT to Wi-Fi Aware peers metrics
1369 optional RttToPeerLog rtt_to_aware = 4;
1370
1371 // Metrics for a RTT to Peer (peer = AP or Wi-Fi Aware)
1372 message RttToPeerLog {
1373 // Total number of API calls
1374 optional int32 num_requests = 1;
1375
1376 // Total number of individual requests
1377 optional int32 num_individual_requests = 2;
1378
1379 // Total number of apps which requested RTT
1380 optional int32 num_apps = 3;
1381
1382 // Histogram of total number of RTT requests by an app (WifiRttManager#startRanging)
1383 repeated HistogramBucket histogram_num_requests_per_app = 4;
1384
1385 // Histogram of number of peers in a single RTT request (RangingRequest entries)
1386 repeated HistogramBucket histogram_num_peers_per_request = 5;
1387
1388 // Histogram of status of individual RTT operations (RangingResult entries)
1389 repeated RttIndividualStatusHistogramBucket histogram_individual_status = 6;
1390
1391 // Histogram of measured distances (RangingResult entries)
1392 repeated HistogramBucket histogram_distance = 7;
1393
1394 // Histogram of interval of RTT requests by an app (WifiRttManager#startRanging)
1395 repeated HistogramBucket histogram_request_interval_ms = 8;
1396 }
1397
1398 // Histogram bucket for Wi-Fi RTT logs. Range is [start, end)
1399 message HistogramBucket {
1400 // lower range of the bucket (inclusive)
1401 optional int64 start = 1;
1402
1403 // upper range of the bucket (exclusive)
1404 optional int64 end = 2;
1405
1406 // number of samples in the bucket
1407 optional int32 count = 3;
1408 }
1409
1410 // Status codes for overall RTT operation
1411 enum RttOverallStatusTypeEnum {
1412 // constant to be used by proto
1413 OVERALL_UNKNOWN = 0;
1414
1415 // RTT operation succeeded (individual results may still fail)
1416 OVERALL_SUCCESS = 1;
1417
1418 // RTT operation failed (unspecified reason)
1419 OVERALL_FAIL = 2;
1420
1421 // RTT operation failed since RTT was not available (e.g. Airplane mode)
1422 OVERALL_RTT_NOT_AVAILABLE = 3;
1423
1424 // RTT operation timed-out: didn't receive response from HAL in expected time
1425 OVERALL_TIMEOUT = 4;
1426
1427 // RTT operation aborted since the app is spamming the service
1428 OVERALL_THROTTLE = 5;
1429
1430 // RTT request to HAL received immediate failure
1431 OVERALL_HAL_FAILURE = 6;
1432
1433 // RTT to Wi-Fi Aware peer using PeerHandle failed to get a MAC address translation
1434 OVERALL_AWARE_TRANSLATION_FAILURE = 7;
1435
1436 // RTT operation failed due to missing Location permission (post execution)
1437 OVERALL_LOCATION_PERMISSION_MISSING = 8;
1438 }
1439
1440 // Status codes for individual RTT operation
1441 enum RttIndividualStatusTypeEnum {
1442 // constant to be used by proto
1443 UNKNOWN = 0;
1444
1445 // RTT operation succeeded
1446 SUCCESS = 1;
1447
1448 // RTT failure: generic reason (no further information)
1449 FAILURE = 2;
1450
1451 // Target STA does not respond to request
1452 FAIL_NO_RSP = 3;
1453
1454 // Request rejected. Applies to 2-sided RTT only
1455 FAIL_REJECTED = 4;
1456
1457 // Operation not scheduled
1458 FAIL_NOT_SCHEDULED_YET = 5;
1459
1460 // Timing measurement times out
1461 FAIL_TM_TIMEOUT = 6;
1462
1463 // Target on different channel, cannot range
1464 FAIL_AP_ON_DIFF_CHANNEL = 7;
1465
1466 // Ranging not supported
1467 FAIL_NO_CAPABILITY = 8;
1468
1469 // Request aborted for unknown reason
1470 ABORTED = 9;
1471
1472 // Invalid T1-T4 timestamp
1473 FAIL_INVALID_TS = 10;
1474
1475 // 11mc protocol failed
1476 FAIL_PROTOCOL = 11;
1477
1478 // Request could not be scheduled
1479 FAIL_SCHEDULE = 12;
1480
1481 // Responder cannot collaborate at time of request
1482 FAIL_BUSY_TRY_LATER = 13;
1483
1484 // Bad request args
1485 INVALID_REQ = 14;
1486
1487 // WiFi not enabled
1488 NO_WIFI = 15;
1489
1490 // Responder overrides param info, cannot range with new params
1491 FAIL_FTM_PARAM_OVERRIDE = 16;
1492
1493 // HAL did not provide a result to a framework request
1494 MISSING_RESULT = 17;
1495 }
1496
1497 // Histogram bucket for Wi-Fi RTT overall operation status
1498 message RttOverallStatusHistogramBucket {
1499 // status type defining the bucket
1500 optional RttOverallStatusTypeEnum status_type = 1;
1501
1502 // number of samples in the bucket
1503 optional int32 count = 2;
1504 }
1505
1506 // Histogram bucket for Wi-Fi RTT individual operation status
1507 message RttIndividualStatusHistogramBucket {
1508 // status type defining the bucket
1509 optional RttIndividualStatusTypeEnum status_type = 1;
1510
1511 // number of samples in the bucket
1512 optional int32 count = 2;
1513 }
1514}
xshub483b722018-05-22 15:46:26 -07001515
1516// Usage data for the wifi radio while device is running on battery.
1517message WifiRadioUsage {
1518 // Duration of log (ms)
1519 optional int64 logging_duration_ms = 1;
1520
1521 // Total time for which the radio is awake due to scan.
1522 optional int64 scan_time_ms = 2;
Jong Wook Kim411cab92018-04-26 15:09:23 -07001523}
1524
1525message ExperimentValues {
1526 // Indicates if we are logging WifiIsUnusableEvent in metrics
1527 optional bool wifi_is_unusable_logging_enabled = 1;
1528
1529 // Minimum number of txBad to trigger a data stall
1530 optional int32 wifi_data_stall_min_tx_bad = 2;
1531
1532 // Minimum number of txSuccess to trigger a data stall
1533 // when rxSuccess is 0
1534 optional int32 wifi_data_stall_min_tx_success_without_rx = 3;
1535}
1536
1537message WifiIsUnusableEvent {
1538 enum TriggerType {
1539 // Default/Invalid event
1540 TYPE_UNKNOWN = 0;
1541
1542 // There is a data stall from tx failures
1543 TYPE_DATA_STALL_BAD_TX = 1;
1544
1545 // There is a data stall from rx failures
1546 TYPE_DATA_STALL_TX_WITHOUT_RX = 2;
1547
1548 // There is a data stall from both tx and rx failures
1549 TYPE_DATA_STALL_BOTH = 3;
1550
1551 // Firmware generated an alert
1552 TYPE_FIRMWARE_ALERT = 4;
1553 }
1554
1555 // What event triggered WifiIsUnusableEvent.
1556 optional TriggerType type = 1;
1557
1558 // The timestamp at which this event occurred.
1559 // Measured in milliseconds that have elapsed since the device booted.
1560 optional int64 start_time_millis = 2;
1561
1562 // NetworkAgent score of connected wifi.
1563 // Defaults to -1 if the score was never set.
1564 optional int32 last_score = 3 [default = -1];
1565
1566 // Delta of successfully transmitted (ACKed) unicast data packets
1567 // between the last two WifiLinkLayerStats.
1568 optional int64 tx_success_delta = 4;
1569
1570 // Delta of transmitted unicast data retry packets
1571 // between the last two WifiLinkLayerStats.
1572 optional int64 tx_retries_delta = 5;
1573
1574 // Delta of lost (not ACKed) transmitted unicast data packets
1575 // between the last two WifiLinkLayerStats.
1576 optional int64 tx_bad_delta = 6;
1577
1578 // Delta of received unicast data packets
1579 // between the last two WifiLinkLayerStats.
1580 optional int64 rx_success_delta = 7;
1581
1582 // Time in millisecond between the last two WifiLinkLayerStats.
1583 optional int64 packet_update_time_delta = 8;
1584
1585 // The timestamp at which the last WifiLinkLayerStats was updated.
1586 // Measured in milliseconds that have elapsed since the device booted.
1587 optional int64 last_link_layer_stats_update_time = 9;
1588
1589 // Firmware alert code. Only valid when the event was triggered by a firmware alert, otherwise -1.
1590 optional int32 firmware_alert_code = 10 [default = -1];
xshub483b722018-05-22 15:46:26 -07001591}