blob: ad0ed8beb7c5ba3ec75dd4d16dc62648b50db4c4 [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
Hai Shalom808ceb32019-01-25 13:49:49 -080036 // Number of legacy personal networks.
37 optional int32 num_legacy_personal_networks = 4;
Glen Kuhne94814572016-10-25 12:40:35 -070038
Hai Shalom808ceb32019-01-25 13:49:49 -080039 // Number of legacy enterprise networks.
40 optional int32 num_legacy_enterprise_networks = 5;
Glen Kuhne94814572016-10-25 12:40:35 -070041
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
Hai Shaloma18c32c2019-01-22 10:01:09 -080099 // Return code of the scan.
100 optional ScanReturnCode scan_return_code = 1;
Glen Kuhne94814572016-10-25 12:40:35 -0700101
Hai Shaloma18c32c2019-01-22 10:01:09 -0800102 // Number of entries that were found in the scan.
103 optional int32 scan_results_count = 2;
Glen Kuhne94814572016-10-25 12:40:35 -0700104 }
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
Hai Shaloma18c32c2019-01-22 10:01:09 -0800128 // Current WiFi state.
129 optional WifiState wifi_state = 1;
Glen Kuhne94814572016-10-25 12:40:35 -0700130
Hai Shaloma18c32c2019-01-22 10:01:09 -0800131 // Count of scans in state.
132 optional int32 wifi_state_count = 2;
Glen Kuhne94814572016-10-25 12:40:35 -0700133
Hai Shaloma18c32c2019-01-22 10:01:09 -0800134 // Is screen on.
135 optional bool is_screen_on = 3;
Glen Kuhne94814572016-10-25 12:40:35 -0700136 }
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
Hai Shalom808ceb32019-01-25 13:49:49 -0800209 // Total number of scan results for legacy personal networks
210 optional int32 num_legacy_personal_network_scan_results = 41;
Glen Kuhne94814572016-10-25 12:40:35 -0700211
Hai Shalom808ceb32019-01-25 13:49:49 -0800212 // Total number of scan results for legacy enterprise networks
213 optional int32 num_legacy_enterprise_network_scan_results = 42;
Glen Kuhne94814572016-10-25 12:40:35 -0700214
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;
Jong Wook Kime4aa37f2018-04-23 11:18:24 -0700469
470 // Counts the occurrences of each link speed (Mbps) level
471 // with rssi (dBm) and rssi^2 sums (dBm^2)
472 repeated LinkSpeedCount link_speed_counts = 121;
Ahmed ElArabawyba64b612018-06-15 09:17:45 -0700473
474 // Number of times the SarManager failed to register SAR sensor listener
475 optional int32 num_sar_sensor_registration_failures = 122;
Ecco Park5a403002018-07-23 15:53:10 -0700476
477 // Histogram of the EAP method type of all installed Passpoint profiles
478 repeated PasspointProfileTypeCount installed_passpoint_profile_type = 123;
Siddharth Ray191b10b2018-08-10 17:36:17 -0700479
480 // Hardware revision (EVT, DVT, PVT etc.)
481 optional string hardware_revision = 124;
xshu0e0dea42018-09-17 17:30:15 -0700482
483 // Total wifi link layer usage data over the logging duration in ms.
484 optional WifiLinkLayerUsageStats wifi_link_layer_usage_stats = 125;
xshua33726e2018-09-24 15:02:23 -0700485
486 // Multiple lists of timestamped link layer stats with labels to represent whether wifi is usable
487 repeated WifiUsabilityStats wifi_usability_stats_list = 126;
Mingguang Xuca2aab12019-01-12 23:40:42 -0800488
489 // Counts the occurrences of each Wifi usability score provided by external app
490 repeated WifiUsabilityScoreCount wifi_usability_score_count = 127;
David Su367bdff2018-12-13 13:39:11 -0800491
492 // List of PNO scan stats, one element for each mobility state
493 repeated DeviceMobilityStatePnoScanStats mobility_state_pno_stats_list = 128;
Jimmy Chen0142e8b2018-11-23 16:25:57 +0800494
495 // Wifi p2p statistics
496 optional WifiP2pStats wifi_p2p_stats = 129;
Hai Shaloma18c32c2019-01-22 10:01:09 -0800497
498 // Easy Connect (DPP) metrics
499 optional WifiDppLog wifi_dpp_log = 130;
Hai Shalom808ceb32019-01-25 13:49:49 -0800500
501 // Number of Enhanced Open (OWE) networks in the saved networks.
502 optional int32 num_enhanced_open_networks = 131;
503
504 // Number of WPA3-Personal networks.
505 optional int32 num_wpa3_personal_networks = 132;
506
507 // Number of WPA3-Enterprise networks.
508 optional int32 num_wpa3_enterprise_networks = 133;
509
510 // Total number of scan results for Enhanced open networks
511 optional int32 num_enhanced_open_network_scan_results = 134;
512
513 // Total number of scan results for WPA3-Personal networks
514 optional int32 num_wpa3_personal_network_scan_results = 135;
515
516 // Total number of scan results for WPA3-Enterprise networks
517 optional int32 num_wpa3_enterprise_network_scan_results = 136;
Roshan Pius89b233d2019-01-31 10:15:22 -0800518
519 // WifiConfigStore read/write metrics.
520 optional WifiConfigStoreIO wifi_config_store_io = 137;
xshuaeabbb72019-02-08 13:27:17 -0800521
522 // Total number of saved networks with mac randomization enabled.
523 optional int32 num_saved_networks_with_mac_randomization = 138;
Glen Kuhne94814572016-10-25 12:40:35 -0700524}
525
526// Information that gets logged for every WiFi connection.
527message RouterFingerPrint {
528
529 enum RoamType {
530
531 // Type is unknown.
532 ROAM_TYPE_UNKNOWN = 0;
533
534 // No roaming - usually happens on a single band (2.4 GHz) router.
535 ROAM_TYPE_NONE = 1;
536
537 // Enterprise router.
538 ROAM_TYPE_ENTERPRISE = 2;
539
540 // DBDC => Dual Band Dual Concurrent essentially a router that
541 // supports both 2.4 GHz and 5 GHz bands.
542 ROAM_TYPE_DBDC = 3;
543 }
544
545 enum Auth {
546
547 // Auth is unknown.
548 AUTH_UNKNOWN = 0;
549
550 // No authentication.
551 AUTH_OPEN = 1;
552
553 // If the router uses a personal authentication.
554 AUTH_PERSONAL = 2;
555
556 // If the router is setup for enterprise authentication.
557 AUTH_ENTERPRISE = 3;
558 }
559
560 enum RouterTechnology {
561
562 // Router is unknown.
563 ROUTER_TECH_UNKNOWN = 0;
564
565 // Router Channel A.
566 ROUTER_TECH_A = 1;
567
568 // Router Channel B.
569 ROUTER_TECH_B = 2;
570
571 // Router Channel G.
572 ROUTER_TECH_G = 3;
573
574 // Router Channel N.
575 ROUTER_TECH_N = 4;
576
577 // Router Channel AC.
578 ROUTER_TECH_AC = 5;
579
580 // When the channel is not one of the above.
581 ROUTER_TECH_OTHER = 6;
582 }
583
584 optional RoamType roam_type = 1;
585
586 // Channel on which the connection takes place.
587 optional int32 channel_info = 2;
588
589 // DTIM setting of the router.
590 optional int32 dtim = 3;
591
592 // Authentication scheme of the router.
593 optional Auth authentication = 4;
594
595 // If the router is hidden.
596 optional bool hidden = 5;
597
598 // Channel information.
599 optional RouterTechnology router_technology = 6;
600
601 // whether ipv6 is supported.
602 optional bool supports_ipv6 = 7;
603
604 // If the router is a passpoint / hotspot 2.0 network
605 optional bool passpoint = 8;
606}
607
608message ConnectionEvent {
609
610 // Roam Type.
611 enum RoamType {
612
613 // Type is unknown.
614 ROAM_UNKNOWN = 0;
615
616 // No roaming.
Hai Shaloma18c32c2019-01-22 10:01:09 -0800617 ROAM_NONE = 1;
Glen Kuhne94814572016-10-25 12:40:35 -0700618
619 // DBDC roaming.
620 ROAM_DBDC = 2;
621
622 // Enterprise roaming.
623 ROAM_ENTERPRISE = 3;
624
625 // User selected roaming.
626 ROAM_USER_SELECTED = 4;
627
628 // Unrelated.
629 ROAM_UNRELATED = 5;
630 }
631
632 // Connectivity Level Failure.
633 enum ConnectivityLevelFailure {
634
635 // Failure is unknown.
636 HLF_UNKNOWN = 0;
637
638 // No failure.
639 HLF_NONE = 1;
640
641 // DHCP failure.
642 HLF_DHCP = 2;
643
644 // No internet connection.
645 HLF_NO_INTERNET = 3;
646
647 // No internet connection.
648 HLF_UNWANTED = 4;
649 }
650
651 // Start time of the connection.
652 optional int64 start_time_millis = 1;// [(datapol.semantic_type) = ST_TIMESTAMP];
653
654 // Duration to connect.
655 optional int32 duration_taken_to_connect_millis = 2;
656
657 // Router information.
658 optional RouterFingerPrint router_fingerprint = 3;
659
660 // RSSI at the start of the connection.
661 optional int32 signal_strength = 4;
662
663 // Roam Type.
664 optional RoamType roam_type = 5;
665
666 // Result of the connection.
667 optional int32 connection_result = 6;
668
669 // Reasons for level 2 failure (needs to be coordinated with wpa-supplicant).
670 optional int32 level_2_failure_code = 7;
671
672 // Failures that happen at the connectivity layer.
673 optional ConnectivityLevelFailure connectivity_level_failure_code = 8;
674
675 // Has bug report been taken.
676 optional bool automatic_bug_report_taken = 9;
xshu483a45b2019-02-08 13:24:02 -0800677
678 // Connection is using locally generated random MAC address.
679 optional bool use_randomized_mac = 10 [default = false];
Glen Kuhne94814572016-10-25 12:40:35 -0700680}
681
682// Number of occurrences of a specific RSSI poll rssi value
683message RssiPollCount {
684 // RSSI
685 optional int32 rssi = 1;
686
687 // Number of RSSI polls with 'rssi'
688 optional int32 count = 2;
xshu122886e2018-05-16 15:38:49 -0700689
690 // Beacon frequency of the channel in MHz
691 optional int32 frequency = 3;
Glen Kuhne94814572016-10-25 12:40:35 -0700692}
693
694// Number of occurrences of a specific alert reason value
695message AlertReasonCount {
696 // Alert reason
697 optional int32 reason = 1;
698
699 // Number of alerts with |reason|.
700 optional int32 count = 2;
701}
702
703// Counts the number of instances of a specific Wifi Score calculated by WifiScoreReport
704message WifiScoreCount {
705 // Wifi Score
706 optional int32 score = 1;
707
708 // Number of Wifi score reports with this score
709 optional int32 count = 2;
710}
711
Mingguang Xuca2aab12019-01-12 23:40:42 -0800712// Counts the number of instances of a specific Wifi Usability Score
713message WifiUsabilityScoreCount {
714 // Wifi Usability Score
715 optional int32 score = 1;
716
717 // Number of Wifi score reports with this score
718 optional int32 count = 2;
719}
720
Jong Wook Kime4aa37f2018-04-23 11:18:24 -0700721// Number of occurrences of a specific link speed (Mbps)
722// and sum of rssi (dBm) and rssi^2 (dBm^2)
723message LinkSpeedCount {
724 // Link speed (Mbps)
725 optional int32 link_speed_mbps = 1;
726
727 // Number of RSSI polls with link_speed
728 optional int32 count = 2;
729
730 // Sum of absolute values of rssi values (dBm)
731 optional int32 rssi_sum_dbm = 3;
732
733 // Sum of squares of rssi values (dBm^2)
734 optional int64 rssi_sum_of_squares_dbm_sq = 4;
735}
736
Glen Kuhne94814572016-10-25 12:40:35 -0700737// Number of occurrences of Soft AP session durations
738message SoftApDurationBucket {
739 // Bucket covers duration : [duration_sec, duration_sec + bucket_size_sec)
740 // The (inclusive) lower bound of Soft AP session duration represented by this bucket
741 optional int32 duration_sec = 1;
742
743 // The size of this bucket
744 optional int32 bucket_size_sec = 2;
745
746 // Number of soft AP session durations that fit into this bucket
747 optional int32 count = 3;
748}
749
750// Number of occurrences of a soft AP session return code
751message SoftApReturnCodeCount {
Rebecca Silberstein28d9de22017-01-24 10:42:59 -0800752
753 enum SoftApStartResult {
754
755 // SoftApManager return code unknown
756 SOFT_AP_RETURN_CODE_UNKNOWN = 0;
757
758 // SoftAp started successfully
759 SOFT_AP_STARTED_SUCCESSFULLY = 1;
760
761 // Catch all for failures with no specific failure reason
762 SOFT_AP_FAILED_GENERAL_ERROR = 2;
763
764 // SoftAp failed to start due to NO_CHANNEL error
765 SOFT_AP_FAILED_NO_CHANNEL = 3;
766 }
767
768 // Historical, no longer used for writing as of 01/2017.
769 optional int32 return_code = 1 [deprecated = true];
Glen Kuhne94814572016-10-25 12:40:35 -0700770
771 // Occurrences of this soft AP return code
772 optional int32 count = 2;
Rebecca Silberstein28d9de22017-01-24 10:42:59 -0800773
774 // Result of attempt to start SoftAp
775 optional SoftApStartResult start_result = 3;
Glen Kuhne94814572016-10-25 12:40:35 -0700776}
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700777
778message StaEvent {
779 message ConfigInfo {
780 // The set of key management protocols supported by this configuration.
781 optional uint32 allowed_key_management = 1 [default = 0];
782
783 // The set of security protocols supported by this configuration.
784 optional uint32 allowed_protocols = 2 [default = 0];
785
786 // The set of authentication protocols supported by this configuration.
787 optional uint32 allowed_auth_algorithms = 3 [default = 0];
788
789 // The set of pairwise ciphers for WPA supported by this configuration.
790 optional uint32 allowed_pairwise_ciphers = 4 [default = 0];
791
792 // The set of group ciphers supported by this configuration.
793 optional uint32 allowed_group_ciphers = 5;
794
795 // Is this a 'hidden network'
796 optional bool hidden_ssid = 6;
797
798 // Is this a Hotspot 2.0 / passpoint network
799 optional bool is_passpoint = 7;
800
801 // Is this an 'ephemeral' network (Not in saved network list, recommended externally)
802 optional bool is_ephemeral = 8;
803
804 // Has a successful connection ever been established using this WifiConfiguration
805 optional bool has_ever_connected = 9;
806
807 // RSSI of the scan result candidate associated with this WifiConfiguration
808 optional int32 scan_rssi = 10 [default = -127];
809
810 // Frequency of the scan result candidate associated with this WifiConfiguration
811 optional int32 scan_freq = 11 [default = -1];
812 }
813
814 enum EventType {
815 // Default/Invalid event
816 TYPE_UNKNOWN = 0;
817
818 // Supplicant Association Rejection event. Code contains the 802.11
819 TYPE_ASSOCIATION_REJECTION_EVENT = 1;
820
821 // Supplicant L2 event,
822 TYPE_AUTHENTICATION_FAILURE_EVENT = 2;
823
824 // Supplicant L2 event
825 TYPE_NETWORK_CONNECTION_EVENT = 3;
826
827 // Supplicant L2 event
828 TYPE_NETWORK_DISCONNECTION_EVENT = 4;
829
830 // Supplicant L2 event
831 TYPE_SUPPLICANT_STATE_CHANGE_EVENT = 5;
832
833 // Supplicant L2 event
834 TYPE_CMD_ASSOCIATED_BSSID = 6;
835
836 // IP Manager successfully completed IP Provisioning
837 TYPE_CMD_IP_CONFIGURATION_SUCCESSFUL = 7;
838
839 // IP Manager failed to complete IP Provisioning
840 TYPE_CMD_IP_CONFIGURATION_LOST = 8;
841
842 // IP Manager lost reachability to network neighbors
843 TYPE_CMD_IP_REACHABILITY_LOST = 9;
844
845 // Indicator that Supplicant is targeting a BSSID for roam/connection
846 TYPE_CMD_TARGET_BSSID = 10;
847
848 // Wifi framework is initiating a connection attempt
849 TYPE_CMD_START_CONNECT = 11;
850
851 // Wifi framework is initiating a roaming connection attempt
852 TYPE_CMD_START_ROAM = 12;
853
854 // SystemAPI connect() command, Settings App
855 TYPE_CONNECT_NETWORK = 13;
856
857 // Network Agent has validated the internet connection (Captive Portal Check success, or user
858 // validation)
859 TYPE_NETWORK_AGENT_VALID_NETWORK = 14;
860
861 // Framework initiated disconnect. Sometimes generated to give an extra reason for a disconnect
862 // Should typically be followed by a NETWORK_DISCONNECTION_EVENT with a local_gen = true
863 TYPE_FRAMEWORK_DISCONNECT = 15;
Michael Plassbb367b62017-10-06 10:29:51 -0700864
865 // The NetworkAgent score for wifi has changed in a way that may impact
866 // connectivity
867 TYPE_SCORE_BREACH = 16;
Jong Wook Kim01ad38b2018-04-09 10:14:11 -0700868
869 // Framework changed Sta interface MAC address
870 TYPE_MAC_CHANGE = 17;
Jong Wook Kimb56979f2018-08-08 14:50:18 -0700871
872 // Wifi is turned on
873 TYPE_WIFI_ENABLED = 18;
874
875 // Wifi is turned off
876 TYPE_WIFI_DISABLED = 19;
Mingguang Xuca2aab12019-01-12 23:40:42 -0800877
878 // The NetworkAgent Wifi usability score has changed in a way that may
879 // impact connectivity
880 TYPE_WIFI_USABILITY_SCORE_BREACH = 20;
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700881 }
882
883 enum FrameworkDisconnectReason {
884 // default/none/unknown value
885 DISCONNECT_UNKNOWN = 0;
886
887 // API DISCONNECT
888 DISCONNECT_API = 1;
889
890 // Some framework internal reason (generic)
891 DISCONNECT_GENERIC = 2;
892
893 // Network Agent network validation failed, user signaled network unwanted
894 DISCONNECT_UNWANTED = 3;
895
896 // Roaming timed out
897 DISCONNECT_ROAM_WATCHDOG_TIMER = 4;
898
899 // P2P service requested wifi disconnect
900 DISCONNECT_P2P_DISCONNECT_WIFI_REQUEST = 5;
901
902 // SIM was removed while using a SIM config
903 DISCONNECT_RESET_SIM_NETWORKS = 6;
904 }
905
906 // Authentication Failure reasons as reported through the API.
907 enum AuthFailureReason {
908 // Unknown default
909 AUTH_FAILURE_UNKNOWN = 0;
910
911 // The reason code if there is no error during authentication. It could also imply that there no
912 // authentication in progress,
913 AUTH_FAILURE_NONE = 1;
914
915 // The reason code if there was a timeout authenticating.
916 AUTH_FAILURE_TIMEOUT = 2;
917
918 // The reason code if there was a wrong password while authenticating.
919 AUTH_FAILURE_WRONG_PSWD = 3;
920
921 // The reason code if there was EAP failure while authenticating.
922 AUTH_FAILURE_EAP_FAILURE = 4;
923 }
924
925 // What event was this
926 optional EventType type = 1;
927
928 // 80211 death reason code, relevant to NETWORK_DISCONNECTION_EVENTs
929 optional int32 reason = 2 [default = -1];
930
931 // 80211 Association Status code, relevant to ASSOCIATION_REJECTION_EVENTs
932 optional int32 status = 3 [default = -1];
933
934 // Designates whether a NETWORK_DISCONNECT_EVENT was by the STA or AP
935 optional bool local_gen = 4 [default = false];
936
937 // Network information from the WifiConfiguration of a framework initiated connection attempt
938 optional ConfigInfo config_info = 5;
939
940 // RSSI from the last rssi poll (Only valid for active connections)
941 optional int32 last_rssi = 6 [default = -127];
942
943 // Link speed from the last rssi poll (Only valid for active connections)
944 optional int32 last_link_speed = 7 [default = -1];
945
946 // Frequency from the last rssi poll (Only valid for active connections)
947 optional int32 last_freq = 8 [default = -1];
948
949 // Enum used to define bit positions in the supplicant_state_change_bitmask
950 // See {@code frameworks/base/wifi/java/android/net/wifi/SupplicantState.java} for documentation
951 enum SupplicantState {
952 STATE_DISCONNECTED = 0;
953
954 STATE_INTERFACE_DISABLED = 1;
955
956 STATE_INACTIVE = 2;
957
958 STATE_SCANNING = 3;
959
960 STATE_AUTHENTICATING = 4;
961
962 STATE_ASSOCIATING = 5;
963
964 STATE_ASSOCIATED = 6;
965
966 STATE_FOUR_WAY_HANDSHAKE = 7;
967
968 STATE_GROUP_HANDSHAKE = 8;
969
970 STATE_COMPLETED = 9;
971
972 STATE_DORMANT = 10;
973
974 STATE_UNINITIALIZED = 11;
975
976 STATE_INVALID = 12;
977 }
978
Jong Wook Kim411cab92018-04-26 15:09:23 -0700979 // Bit mask of all supplicant state changes that occurred since the last event
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700980 optional uint32 supplicant_state_changes_bitmask = 9 [default = 0];
981
982 // The number of milliseconds that have elapsed since the device booted
983 optional int64 start_time_millis = 10 [default = 0];
984
985 optional FrameworkDisconnectReason framework_disconnect_reason = 11 [default = DISCONNECT_UNKNOWN];
986
Jong Wook Kim411cab92018-04-26 15:09:23 -0700987 // Flag which indicates if an association rejection event occurred due to a timeout
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700988 optional bool association_timed_out = 12 [default = false];
989
990 // Authentication failure reason, as reported by WifiManager (calculated from state & deauth code)
991 optional AuthFailureReason auth_failure_reason = 13 [default = AUTH_FAILURE_UNKNOWN];
Michael Plassbb367b62017-10-06 10:29:51 -0700992
993 // NetworkAgent score of connected wifi
994 optional int32 last_score = 14 [default = -1];
Mingguang Xuca2aab12019-01-12 23:40:42 -0800995
996 // NetworkAgent Wifi usability score of connected wifi
997 optional int32 last_wifi_usability_score = 15 [default = -1];
Mingguang Xue7e344a2019-01-21 16:26:45 -0800998
999 // Prediction horizon (in second) of Wifi usability score provided by external
1000 // system app
1001 optional int32 last_prediction_horizon_sec = 16 [default = -1];
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -07001002}
Etan Cohen737addc2017-04-26 08:01:57 -07001003
1004// Wi-Fi Aware metrics
1005message WifiAwareLog {
1006 // total number of unique apps that used Aware (measured on attach)
1007 optional int32 num_apps = 1;
1008
1009 // total number of unique apps that used an identity callback when attaching
1010 optional int32 num_apps_using_identity_callback = 2;
1011
1012 // maximum number of attaches for an app
1013 optional int32 max_concurrent_attach_sessions_in_app = 3;
1014
1015 // histogram of attach request results
1016 repeated NanStatusHistogramBucket histogram_attach_session_status = 4;
1017
1018 // maximum number of concurrent publish sessions in a single app
1019 optional int32 max_concurrent_publish_in_app = 5;
1020
1021 // maximum number of concurrent subscribe sessions in a single app
1022 optional int32 max_concurrent_subscribe_in_app = 6;
1023
1024 // maximum number of concurrent discovery (publish+subscribe) sessions in a single app
1025 optional int32 max_concurrent_discovery_sessions_in_app = 7;
1026
1027 // maximum number of concurrent publish sessions in the system
1028 optional int32 max_concurrent_publish_in_system = 8;
1029
1030 // maximum number of concurrent subscribe sessions in the system
1031 optional int32 max_concurrent_subscribe_in_system = 9;
1032
1033 // maximum number of concurrent discovery (publish+subscribe) sessions in the system
1034 optional int32 max_concurrent_discovery_sessions_in_system = 10;
1035
1036 // histogram of publish request results
1037 repeated NanStatusHistogramBucket histogram_publish_status = 11;
1038
1039 // histogram of subscribe request results
1040 repeated NanStatusHistogramBucket histogram_subscribe_status = 12;
1041
1042 // number of unique apps which experienced a discovery session creation failure due to lack of
1043 // resources
1044 optional int32 num_apps_with_discovery_session_failure_out_of_resources = 13;
1045
1046 // histogram of create ndp request results
1047 repeated NanStatusHistogramBucket histogram_request_ndp_status = 14;
1048
1049 // histogram of create ndp out-of-band (OOB) request results
1050 repeated NanStatusHistogramBucket histogram_request_ndp_oob_status = 15;
1051
1052 // maximum number of concurrent active data-interfaces (NDI) in a single app
1053 optional int32 max_concurrent_ndi_in_app = 19;
1054
1055 // maximum number of concurrent active data-interfaces (NDI) in the system
1056 optional int32 max_concurrent_ndi_in_system = 20;
1057
1058 // maximum number of concurrent data-paths (NDP) in a single app
1059 optional int32 max_concurrent_ndp_in_app = 21;
1060
1061 // maximum number of concurrent data-paths (NDP) in the system
1062 optional int32 max_concurrent_ndp_in_system = 22;
1063
1064 // maximum number of concurrent secure data-paths (NDP) in a single app
1065 optional int32 max_concurrent_secure_ndp_in_app = 23;
1066
1067 // maximum number of concurrent secure data-paths (NDP) in the system
1068 optional int32 max_concurrent_secure_ndp_in_system = 24;
1069
1070 // maximum number of concurrent data-paths (NDP) per data-interface (NDI)
1071 optional int32 max_concurrent_ndp_per_ndi = 25;
1072
1073 // histogram of durations of Aware being available
1074 repeated HistogramBucket histogram_aware_available_duration_ms = 26;
1075
1076 // histogram of durations of Aware being enabled
1077 repeated HistogramBucket histogram_aware_enabled_duration_ms = 27;
1078
1079 // histogram of duration (in ms) of attach sessions
1080 repeated HistogramBucket histogram_attach_duration_ms = 28;
1081
1082 // histogram of duration (in ms) of publish sessions
1083 repeated HistogramBucket histogram_publish_session_duration_ms = 29;
1084
1085 // histogram of duration (in ms) of subscribe sessions
1086 repeated HistogramBucket histogram_subscribe_session_duration_ms = 30;
1087
1088 // histogram of duration (in ms) of data-paths (NDP)
1089 repeated HistogramBucket histogram_ndp_session_duration_ms = 31;
1090
1091 // histogram of usage (in MB) of data-paths (NDP)
1092 repeated HistogramBucket histogram_ndp_session_data_usage_mb = 32;
1093
1094 // histogram of usage (in MB) of data-path creation time (in ms) measured as request -> confirm
1095 repeated HistogramBucket histogram_ndp_creation_time_ms = 33;
1096
1097 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: minimum
1098 optional int64 ndp_creation_time_ms_min = 34;
1099
1100 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: maximum
1101 optional int64 ndp_creation_time_ms_max = 35;
1102
1103 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: sum
1104 optional int64 ndp_creation_time_ms_sum = 36;
1105
1106 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: sum of sq
1107 optional int64 ndp_creation_time_ms_sum_of_sq = 37;
1108
1109 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: number of
1110 // samples
1111 optional int64 ndp_creation_time_ms_num_samples = 38;
1112
1113 // total time within the logging window that aware was available
1114 optional int64 available_time_ms = 39;
1115
1116 // total time within the logging window that aware was enabled
1117 optional int64 enabled_time_ms = 40;
1118
Etan Cohenfa723572018-03-13 07:25:50 -07001119 // maximum number of concurrent publish sessions enabling ranging in a single app
1120 optional int32 max_concurrent_publish_with_ranging_in_app = 41;
1121
1122 // maximum number of concurrent subscribe sessions specifying a geofence in a single app
1123 optional int32 max_concurrent_subscribe_with_ranging_in_app = 42;
1124
1125 // maximum number of concurrent publish sessions enabling ranging in the system
1126 optional int32 max_concurrent_publish_with_ranging_in_system = 43;
1127
1128 // maximum number of concurrent subscribe sessions specifying a geofence in the system
1129 optional int32 max_concurrent_subscribe_with_ranging_in_system = 44;
1130
1131 // histogram of subscribe session geofence minimum (only when specified)
1132 repeated HistogramBucket histogram_subscribe_geofence_min = 45;
1133
1134 // histogram of subscribe session geofence maximum (only when specified)
1135 repeated HistogramBucket histogram_subscribe_geofence_max = 46;
1136
1137 // total number of subscribe sessions which enabled ranging
1138 optional int32 num_subscribes_with_ranging = 47;
1139
1140 // total number of matches (service discovery indication) with ranging provided
1141 optional int32 num_matches_with_ranging = 48;
1142
1143 // total number of matches (service discovery indication) for service discovery with ranging
1144 // enabled which did not trigger ranging
1145 optional int32 num_matches_without_ranging_for_ranging_enabled_subscribes = 49;
1146
Etan Cohen737addc2017-04-26 08:01:57 -07001147 // Histogram bucket for Wi-Fi Aware logs. Range is [start, end)
1148 message HistogramBucket {
1149 // lower range of the bucket (inclusive)
1150 optional int64 start = 1;
1151
1152 // upper range of the bucket (exclusive)
1153 optional int64 end = 2;
1154
1155 // number of samples in the bucket
1156 optional int32 count = 3;
1157 }
1158
1159 // Status of various NAN operations
1160 enum NanStatusTypeEnum {
1161 // constant to be used by proto
1162 UNKNOWN = 0;
1163
1164 // NAN operation succeeded
1165 SUCCESS = 1;
1166
1167 // NAN Discovery Engine/Host driver failures
1168 INTERNAL_FAILURE = 2;
1169
1170 // NAN OTA failures
1171 PROTOCOL_FAILURE = 3;
1172
1173 // The publish/subscribe discovery session id is invalid
1174 INVALID_SESSION_ID = 4;
1175
1176 // Out of resources to fufill request
1177 NO_RESOURCES_AVAILABLE = 5;
1178
1179 // Invalid arguments passed
1180 INVALID_ARGS = 6;
1181
1182 // Invalid peer id
1183 INVALID_PEER_ID = 7;
1184
1185 // Invalid NAN data-path (ndp) id
1186 INVALID_NDP_ID = 8;
1187
1188 // Attempting to enable NAN when not available, e.g. wifi is disabled
1189 NAN_NOT_ALLOWED = 9;
1190
1191 // Over the air ACK not received
1192 NO_OTA_ACK = 10;
1193
1194 // Attempting to enable NAN when already enabled
1195 ALREADY_ENABLED = 11;
1196
1197 // Can't queue tx followup message foor transmission
1198 FOLLOWUP_TX_QUEUE_FULL = 12;
1199
1200 // Unsupported concurrency of NAN and another feature - NAN disabled
1201 UNSUPPORTED_CONCURRENCY_NAN_DISABLED = 13;
1202
1203 // Unknown NanStatusType
1204 UNKNOWN_HAL_STATUS = 14;
1205 }
1206
1207 // Histogram bucket for Wi-Fi Aware (NAN) status.
1208 message NanStatusHistogramBucket {
1209 // status type defining the bucket
1210 optional NanStatusTypeEnum nan_status_type = 1;
1211
1212 // number of samples in the bucket
1213 optional int32 count = 2;
1214 }
1215}
1216
Glen Kuhnee2d67c02017-04-25 13:08:29 -07001217// Data point used to build 'Number of Connectable Network' histograms
1218message NumConnectableNetworksBucket {
1219 // Number of connectable networks seen in a scan result
1220 optional int32 num_connectable_networks = 1 [default = 0];
1221
1222 // Number of scan results with num_connectable_networks
1223 optional int32 count = 2 [default = 0];
1224}
Mehdi Alizadehd9163cf2017-08-10 18:20:25 -07001225
1226// Pno scan metrics
1227// Here "Pno Scan" refers to the session of offloaded scans, these metrics count the result of a
1228// single session, and not the individual scans within that session.
1229message PnoScanMetrics {
1230 // Total number of attempts to offload pno scans
1231 optional int32 num_pno_scan_attempts = 1;
1232
1233 // Total number of pno scans failed
1234 optional int32 num_pno_scan_failed = 2;
1235
1236 // Number of pno scans started successfully over offload
1237 optional int32 num_pno_scan_started_over_offload = 3;
1238
1239 // Number of pno scans failed over offload
1240 optional int32 num_pno_scan_failed_over_offload = 4;
1241
1242 // Total number of pno scans that found any network
1243 optional int32 num_pno_found_network_events = 5;
1244}
Stephen Chenfc0facb2017-09-14 14:35:15 -07001245
1246// Number of occurrences for a particular "Connect to Network" Notification or
1247// notification Action.
1248message ConnectToNetworkNotificationAndActionCount {
1249
1250 // "Connect to Network" notifications
1251 enum Notification {
1252
1253 // Default
1254 NOTIFICATION_UNKNOWN = 0;
1255
1256 // Initial notification with a recommended network.
1257 NOTIFICATION_RECOMMEND_NETWORK = 1;
1258
1259 // Notification when connecting to the recommended network.
1260 NOTIFICATION_CONNECTING_TO_NETWORK = 2;
1261
1262 // Notification when successfully connected to the network.
1263 NOTIFICATION_CONNECTED_TO_NETWORK = 3;
1264
1265 // Notification when failed to connect to network.
1266 NOTIFICATION_FAILED_TO_CONNECT = 4;
1267 }
1268
1269 // "Connect to Network" notification actions
1270 enum Action {
1271
1272 // Default
1273 ACTION_UNKNOWN = 0;
1274
1275 // User dismissed the "Connect to Network" notification.
1276 ACTION_USER_DISMISSED_NOTIFICATION = 1;
1277
1278 // User tapped action button to connect to recommended network.
1279 ACTION_CONNECT_TO_NETWORK = 2;
1280
1281 // User tapped action button to open Wi-Fi Settings.
1282 ACTION_PICK_WIFI_NETWORK = 3;
1283
1284 // User tapped "Failed to connect" notification to open Wi-Fi Settings.
1285 ACTION_PICK_WIFI_NETWORK_AFTER_CONNECT_FAILURE = 4;
1286 }
1287
1288 // Recommenders of the "Connect to Network" notification
1289 enum Recommender {
1290
1291 // Default.
1292 RECOMMENDER_UNKNOWN = 0;
1293
1294 // Open Network Available recommender.
1295 RECOMMENDER_OPEN = 1;
1296 }
1297
1298 // Notification Type.
1299 optional Notification notification = 1;
1300
1301 // Action Type.
1302 optional Action action = 2;
1303
1304 // Recommender Type.
1305 optional Recommender recommender = 3;
1306
1307 // Occurrences of this action.
1308 optional int32 count = 4;
1309}
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001310
1311// SoftAP event tracking sessions and client counts
1312message SoftApConnectedClientsEvent {
1313
1314 // Soft AP event Types
1315 enum SoftApEventType {
1316
1317 // Soft AP is Up and ready for use
1318 SOFT_AP_UP = 0;
1319
1320 // Soft AP is Down
1321 SOFT_AP_DOWN = 1;
1322
1323 // Number of connected soft AP clients has changed
1324 NUM_CLIENTS_CHANGED = 2;
1325 }
1326
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001327 // Soft AP channel bandwidth types
1328 enum ChannelBandwidth {
1329
1330 BANDWIDTH_INVALID = 0;
1331
1332 BANDWIDTH_20_NOHT = 1;
1333
1334 BANDWIDTH_20 = 2;
1335
1336 BANDWIDTH_40 = 3;
1337
1338 BANDWIDTH_80 = 4;
1339
1340 BANDWIDTH_80P80 = 5;
1341
1342 BANDWIDTH_160 = 6;
1343 }
1344
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001345 // Type of event being recorded
1346 optional SoftApEventType event_type = 1;
1347
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001348 // Time passed since last boot in milliseconds
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001349 optional int64 time_stamp_millis = 2;
1350
1351 // Number of connected clients if event_type is NUM_CLIENTS_CHANGED, otherwise zero.
1352 optional int32 num_connected_clients = 3;
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001353
1354 // Channel frequency used for Soft AP
1355 optional int32 channel_frequency = 4;
1356
1357 // Channel bandwidth used for Soft AP
1358 optional ChannelBandwidth channel_bandwidth = 5;
Jong Wook Kim72c49ee2017-10-26 13:16:36 -07001359}
1360
1361// Wps connection metrics
1362// Keeps track of Wi-Fi Protected Setup usage
1363message WpsMetrics {
1364 // Total number of wps connection attempts
1365 optional int32 num_wps_attempts = 1;
1366
1367 // Total number of wps connection successes
1368 optional int32 num_wps_success = 2;
1369
1370 // Total number of wps failures on start
1371 optional int32 num_wps_start_failure = 3;
1372
1373 // Total number of wps overlap failure
1374 optional int32 num_wps_overlap_failure = 4;
1375
1376 // Total number of wps timeout failure
1377 optional int32 num_wps_timeout_failure = 5;
1378
1379 // Total number of other wps failure during connection
1380 optional int32 num_wps_other_connection_failure = 6;
1381
1382 // Total number of supplicant failure after wps
1383 optional int32 num_wps_supplicant_failure = 7;
1384
1385 // Total number of wps cancellation
1386 optional int32 num_wps_cancellation = 8;
1387}
Siddharth Rayac8b69a2018-01-27 18:05:44 -08001388
1389// Power stats for Wifi
1390message WifiPowerStats {
1391
1392 // Duration of log (ms)
1393 optional int64 logging_duration_ms = 1;
1394
1395 // Energy consumed by wifi (mAh)
1396 optional double energy_consumed_mah = 2;
1397
1398 // Amount of time wifi is in idle (ms)
1399 optional int64 idle_time_ms = 3;
1400
1401 // Amount of time wifi is in rx (ms)
1402 optional int64 rx_time_ms = 4;
1403
1404 // Amount of time wifi is in tx (ms)
1405 optional int64 tx_time_ms = 5;
Blake Kragten354c83d2018-12-04 16:28:44 -08001406
1407 // Amount of time kernel is active because of wifi data (ms)
1408 optional int64 wifi_kernel_active_time_ms = 6;
1409
1410 // Number of packets sent (tx)
1411 optional int64 num_packets_tx = 7;
1412
1413 // Number of bytes sent (tx)
1414 optional int64 num_bytes_tx = 8;
1415
1416 // Number of packets received (rx)
1417 optional int64 num_packets_rx = 9;
1418
1419 // Number of bytes sent (rx)
1420 optional int64 num_bytes_rx = 10;
1421
1422 // Amount of time wifi is in sleep (ms)
1423 optional int64 sleep_time_ms = 11;
1424
1425 // Amount of time wifi is scanning (ms)
1426 optional int64 scan_time_ms = 12;
Ningyuan Wang72886332017-12-20 16:17:33 -08001427}
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001428
1429// Metrics for Wifi Wake
1430message WifiWakeStats {
1431 // An individual session for Wifi Wake
1432 message Session {
1433 // A Wifi Wake lifecycle event
1434 message Event {
1435 // Elapsed time in milliseconds since start of session.
1436 optional int64 elapsed_time_millis = 1;
1437
1438 // Number of scans that have occurred since start of session.
1439 optional int32 elapsed_scans = 2;
1440 }
1441
1442 // Start time of session in milliseconds.
1443 optional int64 start_time_millis = 1;
1444
Eric Schwarzenbach3cad6242018-03-26 10:23:40 -07001445 // The number of networks the lock was provided with at start.
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001446 optional int32 locked_networks_at_start = 2;
1447
Eric Schwarzenbach3cad6242018-03-26 10:23:40 -07001448 // The number of networks in the lock at the time of the initialize event. Only valid if
1449 // initialize_event is recorded.
1450 optional int32 locked_networks_at_initialize = 6;
1451
1452 // Event for fully initializing the WakeupLock (i.e. WakeupLock is "locked").
1453 optional Event initialize_event = 7;
1454
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001455 // Event for unlocking the WakeupLock. Does not occur if lock was initialized with 0 networks.
1456 optional Event unlock_event = 3;
1457
1458 // Event for triggering wakeup.
1459 optional Event wakeup_event = 4;
1460
1461 // Event for WifiWake reset event. This event marks the end of a session.
1462 optional Event reset_event = 5;
1463 }
1464
1465 // Total number of sessions for Wifi Wake.
1466 optional int32 num_sessions = 1;
1467
1468 // Session information for every Wifi Wake session (up to a maximum of 10).
1469 repeated Session sessions = 2;
Eric Schwarzenbach3cad6242018-03-26 10:23:40 -07001470
1471 // Number of ignored calls to start (due to WakeupController already being active).
1472 optional int32 num_ignored_starts = 3;
1473
1474 // Number of Wifi Wake sessions that have recorded wakeup events.
1475 optional int32 num_wakeups = 4;
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001476}
Etan Cohen4ec8dd32018-03-16 09:43:01 -07001477
1478// Metrics for Wi-Fi RTT
1479message WifiRttLog {
1480 // Number of RTT request API calls
1481 optional int32 num_requests = 1;
1482
1483 // Histogram of RTT operation overall status
1484 repeated RttOverallStatusHistogramBucket histogram_overall_status = 2;
1485
1486 // RTT to Access Points metrics
1487 optional RttToPeerLog rtt_to_ap = 3;
1488
1489 // RTT to Wi-Fi Aware peers metrics
1490 optional RttToPeerLog rtt_to_aware = 4;
1491
1492 // Metrics for a RTT to Peer (peer = AP or Wi-Fi Aware)
1493 message RttToPeerLog {
1494 // Total number of API calls
1495 optional int32 num_requests = 1;
1496
1497 // Total number of individual requests
1498 optional int32 num_individual_requests = 2;
1499
1500 // Total number of apps which requested RTT
1501 optional int32 num_apps = 3;
1502
1503 // Histogram of total number of RTT requests by an app (WifiRttManager#startRanging)
1504 repeated HistogramBucket histogram_num_requests_per_app = 4;
1505
1506 // Histogram of number of peers in a single RTT request (RangingRequest entries)
1507 repeated HistogramBucket histogram_num_peers_per_request = 5;
1508
1509 // Histogram of status of individual RTT operations (RangingResult entries)
1510 repeated RttIndividualStatusHistogramBucket histogram_individual_status = 6;
1511
1512 // Histogram of measured distances (RangingResult entries)
1513 repeated HistogramBucket histogram_distance = 7;
1514
1515 // Histogram of interval of RTT requests by an app (WifiRttManager#startRanging)
1516 repeated HistogramBucket histogram_request_interval_ms = 8;
1517 }
1518
Hai Shaloma18c32c2019-01-22 10:01:09 -08001519 // Histogram bucket for Wi-Fi RTT logs. Range is [start, end)
Etan Cohen4ec8dd32018-03-16 09:43:01 -07001520 message HistogramBucket {
1521 // lower range of the bucket (inclusive)
1522 optional int64 start = 1;
1523
1524 // upper range of the bucket (exclusive)
1525 optional int64 end = 2;
1526
1527 // number of samples in the bucket
1528 optional int32 count = 3;
1529 }
1530
1531 // Status codes for overall RTT operation
1532 enum RttOverallStatusTypeEnum {
1533 // constant to be used by proto
1534 OVERALL_UNKNOWN = 0;
1535
1536 // RTT operation succeeded (individual results may still fail)
1537 OVERALL_SUCCESS = 1;
1538
1539 // RTT operation failed (unspecified reason)
1540 OVERALL_FAIL = 2;
1541
1542 // RTT operation failed since RTT was not available (e.g. Airplane mode)
1543 OVERALL_RTT_NOT_AVAILABLE = 3;
1544
1545 // RTT operation timed-out: didn't receive response from HAL in expected time
1546 OVERALL_TIMEOUT = 4;
1547
1548 // RTT operation aborted since the app is spamming the service
1549 OVERALL_THROTTLE = 5;
1550
1551 // RTT request to HAL received immediate failure
1552 OVERALL_HAL_FAILURE = 6;
1553
1554 // RTT to Wi-Fi Aware peer using PeerHandle failed to get a MAC address translation
1555 OVERALL_AWARE_TRANSLATION_FAILURE = 7;
1556
1557 // RTT operation failed due to missing Location permission (post execution)
1558 OVERALL_LOCATION_PERMISSION_MISSING = 8;
1559 }
1560
1561 // Status codes for individual RTT operation
1562 enum RttIndividualStatusTypeEnum {
1563 // constant to be used by proto
1564 UNKNOWN = 0;
1565
1566 // RTT operation succeeded
1567 SUCCESS = 1;
1568
1569 // RTT failure: generic reason (no further information)
1570 FAILURE = 2;
1571
1572 // Target STA does not respond to request
1573 FAIL_NO_RSP = 3;
1574
1575 // Request rejected. Applies to 2-sided RTT only
1576 FAIL_REJECTED = 4;
1577
1578 // Operation not scheduled
1579 FAIL_NOT_SCHEDULED_YET = 5;
1580
1581 // Timing measurement times out
1582 FAIL_TM_TIMEOUT = 6;
1583
1584 // Target on different channel, cannot range
1585 FAIL_AP_ON_DIFF_CHANNEL = 7;
1586
1587 // Ranging not supported
1588 FAIL_NO_CAPABILITY = 8;
1589
1590 // Request aborted for unknown reason
1591 ABORTED = 9;
1592
1593 // Invalid T1-T4 timestamp
1594 FAIL_INVALID_TS = 10;
1595
1596 // 11mc protocol failed
1597 FAIL_PROTOCOL = 11;
1598
1599 // Request could not be scheduled
1600 FAIL_SCHEDULE = 12;
1601
1602 // Responder cannot collaborate at time of request
1603 FAIL_BUSY_TRY_LATER = 13;
1604
1605 // Bad request args
1606 INVALID_REQ = 14;
1607
1608 // WiFi not enabled
1609 NO_WIFI = 15;
1610
1611 // Responder overrides param info, cannot range with new params
1612 FAIL_FTM_PARAM_OVERRIDE = 16;
1613
1614 // HAL did not provide a result to a framework request
1615 MISSING_RESULT = 17;
1616 }
1617
1618 // Histogram bucket for Wi-Fi RTT overall operation status
1619 message RttOverallStatusHistogramBucket {
1620 // status type defining the bucket
1621 optional RttOverallStatusTypeEnum status_type = 1;
1622
1623 // number of samples in the bucket
1624 optional int32 count = 2;
1625 }
1626
1627 // Histogram bucket for Wi-Fi RTT individual operation status
1628 message RttIndividualStatusHistogramBucket {
1629 // status type defining the bucket
1630 optional RttIndividualStatusTypeEnum status_type = 1;
1631
1632 // number of samples in the bucket
1633 optional int32 count = 2;
1634 }
1635}
xshub483b722018-05-22 15:46:26 -07001636
1637// Usage data for the wifi radio while device is running on battery.
1638message WifiRadioUsage {
1639 // Duration of log (ms)
1640 optional int64 logging_duration_ms = 1;
1641
1642 // Total time for which the radio is awake due to scan.
1643 optional int64 scan_time_ms = 2;
Jong Wook Kim411cab92018-04-26 15:09:23 -07001644}
1645
1646message ExperimentValues {
1647 // Indicates if we are logging WifiIsUnusableEvent in metrics
1648 optional bool wifi_is_unusable_logging_enabled = 1;
1649
1650 // Minimum number of txBad to trigger a data stall
1651 optional int32 wifi_data_stall_min_tx_bad = 2;
1652
1653 // Minimum number of txSuccess to trigger a data stall
1654 // when rxSuccess is 0
1655 optional int32 wifi_data_stall_min_tx_success_without_rx = 3;
Jong Wook Kime4aa37f2018-04-23 11:18:24 -07001656
1657 // Indicates if we are logging LinkSpeedCount in metrics
1658 optional bool link_speed_counts_logging_enabled = 4;
Jong Wook Kim411cab92018-04-26 15:09:23 -07001659}
1660
1661message WifiIsUnusableEvent {
1662 enum TriggerType {
1663 // Default/Invalid event
1664 TYPE_UNKNOWN = 0;
1665
1666 // There is a data stall from tx failures
1667 TYPE_DATA_STALL_BAD_TX = 1;
1668
1669 // There is a data stall from rx failures
1670 TYPE_DATA_STALL_TX_WITHOUT_RX = 2;
1671
1672 // There is a data stall from both tx and rx failures
1673 TYPE_DATA_STALL_BOTH = 3;
1674
1675 // Firmware generated an alert
1676 TYPE_FIRMWARE_ALERT = 4;
1677 }
1678
1679 // What event triggered WifiIsUnusableEvent.
1680 optional TriggerType type = 1;
1681
1682 // The timestamp at which this event occurred.
1683 // Measured in milliseconds that have elapsed since the device booted.
1684 optional int64 start_time_millis = 2;
1685
1686 // NetworkAgent score of connected wifi.
1687 // Defaults to -1 if the score was never set.
1688 optional int32 last_score = 3 [default = -1];
1689
1690 // Delta of successfully transmitted (ACKed) unicast data packets
1691 // between the last two WifiLinkLayerStats.
1692 optional int64 tx_success_delta = 4;
1693
1694 // Delta of transmitted unicast data retry packets
1695 // between the last two WifiLinkLayerStats.
1696 optional int64 tx_retries_delta = 5;
1697
1698 // Delta of lost (not ACKed) transmitted unicast data packets
1699 // between the last two WifiLinkLayerStats.
1700 optional int64 tx_bad_delta = 6;
1701
1702 // Delta of received unicast data packets
1703 // between the last two WifiLinkLayerStats.
1704 optional int64 rx_success_delta = 7;
1705
1706 // Time in millisecond between the last two WifiLinkLayerStats.
1707 optional int64 packet_update_time_delta = 8;
1708
1709 // The timestamp at which the last WifiLinkLayerStats was updated.
1710 // Measured in milliseconds that have elapsed since the device booted.
1711 optional int64 last_link_layer_stats_update_time = 9;
1712
1713 // Firmware alert code. Only valid when the event was triggered by a firmware alert, otherwise -1.
1714 optional int32 firmware_alert_code = 10 [default = -1];
Mingguang Xuca2aab12019-01-12 23:40:42 -08001715
1716 // NetworkAgent wifi usability score of connected wifi.
1717 // Defaults to -1 if the score was never set.
1718 optional int32 last_wifi_usability_score = 11 [default = -1];
Mingguang Xue7e344a2019-01-21 16:26:45 -08001719
1720 // Prediction horizon (in second) of Wifi usability score provided by external
1721 // system app
1722 optional int32 last_prediction_horizon_sec = 12 [default = -1];
Ahmed ElArabawyba64b612018-06-15 09:17:45 -07001723}
Ecco Park5a403002018-07-23 15:53:10 -07001724
1725message PasspointProfileTypeCount {
1726 enum EapMethod {
1727 // Unknown Type
1728 TYPE_UNKNOWN = 0;
1729
1730 // EAP_TLS (13)
1731 TYPE_EAP_TLS = 1;
1732
1733 // EAP_TTLS (21)
1734 TYPE_EAP_TTLS = 2;
1735
1736 // EAP_SIM (18)
1737 TYPE_EAP_SIM = 3;
1738
1739 // EAP_AKA (23)
1740 TYPE_EAP_AKA = 4;
1741
1742 // EAP_AKA_PRIME (50)
1743 TYPE_EAP_AKA_PRIME = 5;
1744 }
1745
1746 // Eap method type set in Passpoint profile
1747 optional EapMethod eap_method_type = 1;
1748
1749 // Num of installed Passpoint profile with same eap method
1750 optional int32 count = 2;
xshu0e0dea42018-09-17 17:30:15 -07001751}
1752
1753message WifiLinkLayerUsageStats {
1754 // Total logging duration in ms.
1755 optional int64 logging_duration_ms = 1;
1756
1757 // Total time the wifi radio is on in ms over the logging duration.
1758 optional int64 radio_on_time_ms = 2;
1759
1760 // Total time the wifi radio is doing tx in ms over the logging duration.
1761 optional int64 radio_tx_time_ms = 3;
1762
1763 // Total time the wifi radio is doing rx in ms over the logging duration.
1764 optional int64 radio_rx_time_ms = 4;
1765
1766 // Total time the wifi radio is scanning in ms over the logging duration.
1767 optional int64 radio_scan_time_ms = 5;
xshu0f91dd62018-11-08 15:51:07 -08001768
1769 // Total time the wifi radio spent doing nan scans in ms over the logging duration.
1770 optional int64 radio_nan_scan_time_ms = 6;
1771
1772 // Total time the wifi radio spent doing background scans in ms over the logging duration.
1773 optional int64 radio_background_scan_time_ms = 7;
1774
1775 // Total time the wifi radio spent doing roam scans in ms over the logging duration.
1776 optional int64 radio_roam_scan_time_ms = 8;
1777
1778 // Total time the wifi radio spent doing pno scans in ms over the logging duration.
1779 optional int64 radio_pno_scan_time_ms = 9;
1780
1781 // Total time the wifi radio spent doing hotspot 2.0 scans and GAS exchange
1782 // in ms over the logging duration.
1783 optional int64 radio_hs20_scan_time_ms = 10;
xshua33726e2018-09-24 15:02:23 -07001784}
1785
1786message WifiUsabilityStatsEntry {
Mingguang Xubed08852019-01-24 23:00:10 -08001787 // Status codes for link probe status
1788 enum LinkProbeStatus {
1789 // Link probe status is unknown
1790 PROBE_STATUS_UNKNOWN = 0;
1791
1792 // Link probe is not triggered
1793 PROBE_STATUS_NO_PROBE = 1;
1794
1795 // Link probe is triggered and the result is success
1796 PROBE_STATUS_SUCCESS = 2;
1797
1798 // Link probe is triggered and the result is failure
1799 PROBE_STATUS_FAILURE = 3;
1800 }
1801
xshua33726e2018-09-24 15:02:23 -07001802 // Absolute milliseconds from device boot when these stats were sampled
1803 optional int64 time_stamp_ms = 1;
1804
1805 // The RSSI at the sample time
1806 optional int32 rssi = 2;
1807
1808 // Link speed at the sample time in Mbps
1809 optional int32 link_speed_mbps = 3;
1810
1811 // The total number of tx success counted from the last radio chip reset
1812 optional int64 total_tx_success = 4;
1813
1814 // The total number of MPDU data packet retries counted from the last radio chip reset
1815 optional int64 total_tx_retries = 5;
1816
1817 // The total number of tx bad counted from the last radio chip reset
1818 optional int64 total_tx_bad = 6;
1819
1820 // The total number of rx success counted from the last radio chip reset
1821 optional int64 total_rx_success = 7;
1822
1823 // The total time the wifi radio is on in ms counted from the last radio chip reset
1824 optional int64 total_radio_on_time_ms = 8;
1825
1826 // The total time the wifi radio is doing tx in ms counted from the last radio chip reset
1827 optional int64 total_radio_tx_time_ms = 9;
1828
1829 // The total time the wifi radio is doing rx in ms counted from the last radio chip reset
1830 optional int64 total_radio_rx_time_ms = 10;
1831
1832 // The total time spent on all types of scans in ms counted from the last radio chip reset
1833 optional int64 total_scan_time_ms = 11;
1834
1835 // The total time spent on nan scans in ms counted from the last radio chip reset
1836 optional int64 total_nan_scan_time_ms = 12;
1837
1838 // The total time spent on background scans in ms counted from the last radio chip reset
1839 optional int64 total_background_scan_time_ms = 13;
1840
1841 // The total time spent on roam scans in ms counted from the last radio chip reset
1842 optional int64 total_roam_scan_time_ms = 14;
1843
1844 // The total time spent on pno scans in ms counted from the last radio chip reset
1845 optional int64 total_pno_scan_time_ms = 15;
1846
1847 // The total time spent on hotspot2.0 scans and GAS exchange in ms counted from the last radio
1848 // chip reset
1849 optional int64 total_hotspot_2_scan_time_ms = 16;
Mingguang Xuca2aab12019-01-12 23:40:42 -08001850
1851 // Internal framework Wifi score
1852 optional int32 wifi_score = 17;
1853
1854 // Wifi usability score provided by external system app
1855 optional int32 wifi_usability_score = 18;
1856
1857 // Sequence number from external system app to framework
1858 optional int32 seq_num_to_framework = 19;
Mingguang Xu86833142019-01-09 13:54:29 -08001859
1860 // The total time CCA is on busy status on the current frequency in ms
1861 // counted from the last radio chip reset
1862 optional int64 total_cca_busy_freq_time_ms = 20;
1863
1864 // The total radio on time of the current frequency from the last radio
1865 // chip reset
1866 optional int64 total_radio_on_freq_time_ms = 21;
1867
1868 // The total number of beacons received from the last radio chip reset
1869 optional int64 total_beacon_rx = 22;
Mingguang Xue7e344a2019-01-21 16:26:45 -08001870
1871 // Prediction horizon (in second) of Wifi usability score provided by external
1872 // system app
1873 optional int32 prediction_horizon_sec = 23;
Mingguang Xubed08852019-01-24 23:00:10 -08001874
1875 // The link probe status since last stats update
1876 optional LinkProbeStatus probe_status_since_last_update = 24;
1877
1878 // The elapsed time of the most recent link probe since last stats update;
1879 optional int32 probe_elapsed_time_ms_since_last_update = 25;
1880
1881 // The MCS rate of the most recent link probe since last stats update
1882 optional int32 probe_mcs_rate_since_last_update = 26;
1883
1884 // Rx link speed at the sample time in Mbps
1885 optional int32 rx_link_speed_mbps = 27;
Mingguang Xu96bcabe2019-01-30 22:36:07 -08001886
1887 // Sequence number generated by framework
1888 optional int32 seq_num_inside_framework = 28;
1889
1890 // Whether current entry is for the same BSSID on the same frequency compared
1891 // to last entry
1892 optional bool is_same_bssid_and_freq = 29;
xshua33726e2018-09-24 15:02:23 -07001893}
1894
1895message WifiUsabilityStats {
1896 enum Label {
1897 // Default label
1898 LABEL_UNKNOWN = 0;
1899
1900 // Wifi is usable
1901 LABEL_GOOD = 1;
1902
1903 // Wifi is unusable
1904 LABEL_BAD = 2;
1905 }
1906
Mingguang Xuf69fa672019-01-28 14:32:36 -08001907 enum UsabilityStatsTriggerType {
1908 // Default/Invalid event
1909 TYPE_UNKNOWN = 0;
1910
1911 // There is a data stall from tx failures
1912 TYPE_DATA_STALL_BAD_TX = 1;
1913
1914 // There is a data stall from rx failures
1915 TYPE_DATA_STALL_TX_WITHOUT_RX = 2;
1916
1917 // There is a data stall from both tx and rx failures
1918 TYPE_DATA_STALL_BOTH = 3;
1919
1920 // Firmware generated an alert
1921 TYPE_FIRMWARE_ALERT = 4;
1922 }
1923
xshua33726e2018-09-24 15:02:23 -07001924 // The current wifi usability state
1925 optional Label label = 1;
1926
1927 // The list of timestamped wifi usability stats
1928 repeated WifiUsabilityStatsEntry stats = 2;
Mingguang Xuf69fa672019-01-28 14:32:36 -08001929
1930 // What event triggered WifiUsabilityStats.
1931 optional UsabilityStatsTriggerType trigger_type = 3;
David Su367bdff2018-12-13 13:39:11 -08001932}
1933
1934message DeviceMobilityStatePnoScanStats {
1935 // see WifiManager.DEVICE_MOBILITY_STATE_* constants
1936 enum DeviceMobilityState {
1937 // Unknown mobility
1938 UNKNOWN = 0;
1939
1940 // High movement
1941 HIGH_MVMT = 1;
1942
1943 // Low movement
1944 LOW_MVMT = 2;
1945
1946 // Stationary
1947 STATIONARY = 3;
1948 }
1949
1950 // The device mobility state
1951 optional DeviceMobilityState device_mobility_state = 1;
1952
1953 // The number of times that this state was entered
1954 optional int32 num_times_entered_state = 2;
1955
1956 // The total duration elapsed while in this mobility state, in ms
1957 optional int64 total_duration_ms = 3;
1958
Hai Shaloma18c32c2019-01-22 10:01:09 -08001959
David Su367bdff2018-12-13 13:39:11 -08001960 // the total duration elapsed while in this mobility state with PNO scans running, in ms
1961 optional int64 pno_duration_ms = 4;
1962}
Jimmy Chen0142e8b2018-11-23 16:25:57 +08001963
1964// The information about the Wifi P2p events.
1965message WifiP2pStats {
1966
1967 // Group event list tracking sessions and client counts in tethered mode.
1968 repeated GroupEvent group_event = 1;
1969
1970 // Session information that gets logged for every Wifi P2p connection.
1971 repeated P2pConnectionEvent connection_event = 2;
1972
1973 // Number of persistent group in the user profile.
1974 optional int32 num_persistent_group = 3;
1975
1976 // Number of peer scan.
1977 optional int32 num_total_peer_scans = 4;
1978
1979 // Number of service scan.
1980 optional int32 num_total_service_scans = 5;
1981}
1982
1983message P2pConnectionEvent {
1984
1985 enum ConnectionType {
1986
1987 // fresh new connection.
1988 CONNECTION_FRESH = 0;
1989
1990 // reinvoke a group.
1991 CONNECTION_REINVOKE = 1;
1992
1993 // create a group with the current device as the group owner locally.
1994 CONNECTION_LOCAL = 2;
1995
1996 // create a group or join a group with config.
1997 CONNECTION_FAST = 3;
1998 }
1999
2000 enum ConnectivityLevelFailure {
2001
2002 // Failure is unknown.
2003 CLF_UNKNOWN = 0;
2004
2005 // No failure.
2006 CLF_NONE = 1;
2007
2008 // Timeout for current connecting request.
2009 CLF_TIMEOUT = 2;
2010
2011 // The connecting request is canceled by the user.
2012 CLF_CANCEL = 3;
2013
2014 // Provision discovery failure, e.g. no pin code, timeout, rejected by the peer.
2015 CLF_PROV_DISC_FAIL = 4;
2016
2017 // Invitation failure, e.g. rejected by the peer.
2018 CLF_INVITATION_FAIL = 5;
2019
2020 // Incoming request is rejected by the user.
2021 CLF_USER_REJECT = 6;
2022
2023 // New connection request is issued before ending previous connecting request.
2024 CLF_NEW_CONNECTION_ATTEMPT = 7;
2025 }
2026
2027 // WPS method.
2028 enum WpsMethod {
2029 // WPS is skipped for Group Reinvoke.
2030 WPS_NA = -1;
2031
2032 // Push button configuration.
2033 WPS_PBC = 0;
2034
2035 // Display pin method configuration - pin is generated and displayed on device.
2036 WPS_DISPLAY = 1;
2037
2038 // Keypad pin method configuration - pin is entered on device.
2039 WPS_KEYPAD = 2;
2040
2041 // Label pin method configuration - pin is labelled on device.
2042 WPS_LABEL = 3;
2043 }
2044
2045 // Start time of the connection.
2046 optional int64 start_time_millis = 1;
2047
2048 // Type of the connection.
2049 optional ConnectionType connection_type = 2;
2050
2051 // WPS method.
2052 optional WpsMethod wps_method = 3 [default = WPS_NA];
2053
2054 // Duration to connect.
2055 optional int32 duration_taken_to_connect_millis = 4;
2056
2057 // Failures that happen at the connectivity layer.
2058 optional ConnectivityLevelFailure connectivity_level_failure_code = 5;
2059}
2060
2061// GroupEvent tracking group information from GroupStarted to GroupRemoved.
2062message GroupEvent {
2063
2064 enum GroupRole {
2065
2066 GROUP_OWNER = 0;
2067
2068 GROUP_CLIENT = 1;
2069 }
2070
2071 // The ID of network in supplicant for this group.
2072 optional int32 net_id = 1;
2073
2074 // Start time of the group.
2075 optional int64 start_time_millis = 2;
2076
2077 // Channel frequency used for Group.
2078 optional int32 channel_frequency = 3;
2079
2080 // Is group owner or group client.
2081 optional GroupRole group_role = 5;
2082
2083 // Number of connected clients.
2084 optional int32 num_connected_clients = 6;
2085
2086 // Cumulative number of connected clients.
2087 optional int32 num_cumulative_clients = 7;
2088
2089 // The session duration.
2090 optional int32 session_duration_millis = 8;
2091
2092 // The idle duration. A group without any client is in idle.
2093 optional int32 idle_duration_millis = 9;
2094}
Hai Shaloma18c32c2019-01-22 10:01:09 -08002095
2096// Easy Connect (DPP)
2097message WifiDppLog {
2098 // Number of Configurator-Initiator requests
2099 optional int32 num_dpp_configurator_initiator_requests = 1;
2100
2101 // Number of Enrollee-Initiator requests
2102 optional int32 num_dpp_enrollee_initiator_requests = 2;
2103
2104 // Easy Connect (DPP) Enrollee success
2105 optional int32 num_dpp_enrollee_success = 3;
2106
2107 // Easy Connect (DPP) Configurator success code bucket
2108 repeated DppConfiguratorSuccessStatusHistogramBucket dpp_configurator_success_code = 4;
2109
2110 // Easy Connect (DPP) failure code bucket
2111 repeated DppFailureStatusHistogramBucket dpp_failure_code = 5;
2112
2113 // Easy Connect (DPP) operation time bucket
2114 repeated HistogramBucket dpp_operation_time = 6;
2115
2116 // Histogram bucket for Wi-Fi DPP configurator success
2117 message DppConfiguratorSuccessStatusHistogramBucket {
2118 // status type defining the bucket
2119 optional DppConfiguratorSuccessCode dpp_status_type = 1;
2120
2121 // number of samples in the bucket
2122 optional int32 count = 2;
2123 }
2124
2125 // Histogram bucket for Wi-Fi DPP failures
2126 message DppFailureStatusHistogramBucket {
2127 // status type defining the bucket
2128 optional DppFailureCode dpp_status_type = 1;
2129
2130 // number of samples in the bucket
2131 optional int32 count = 2;
2132 }
2133
2134 // Histogram bucket for Wi-Fi DPP logs. Range is [start, end)
2135 message HistogramBucket {
2136 // lower range of the bucket (inclusive)
2137 optional int32 start = 1;
2138
2139 // upper range of the bucket (exclusive)
2140 optional int32 end = 2;
2141
2142 // number of samples in the bucket
2143 optional int32 count = 3;
2144 }
2145
2146 enum DppConfiguratorSuccessCode {
2147 // Unknown success code
2148 EASY_CONNECT_EVENT_SUCCESS_UNKNOWN = 0;
2149
2150 // Easy Connect Configurator success event: Configuration sent to enrollee
2151 EASY_CONNECT_EVENT_SUCCESS_CONFIGURATION_SENT = 1;
2152 }
2153
2154 enum DppFailureCode {
2155 // Unknown failure
2156 EASY_CONNECT_EVENT_FAILURE_UNKNOWN = 0;
2157
2158 // Easy Connect Failure event: Scanned QR code is either not a Easy Connect URI, or the Easy
2159 // Connect URI has errors.
2160 EASY_CONNECT_EVENT_FAILURE_INVALID_URI = 1;
2161
2162 // Easy Connect Failure event: Bootstrapping/Authentication initialization process failure.
2163 EASY_CONNECT_EVENT_FAILURE_AUTHENTICATION = 2;
2164
2165 // Easy Connect Failure event: Both devices are implementing the same role and are
2166 // incompatible.
2167 EASY_CONNECT_EVENT_FAILURE_NOT_COMPATIBLE = 3;
2168
2169 // Easy Connect Failure event: Configuration process has failed due to malformed message.
2170 EASY_CONNECT_EVENT_FAILURE_CONFIGURATION = 4;
2171
2172 // Easy Connect Failure event: Easy Connect request while in another Easy Connect exchange.
2173 EASY_CONNECT_EVENT_FAILURE_BUSY = 5;
2174
2175 // Easy Connect Failure event: No response from the peer.
2176 EASY_CONNECT_EVENT_FAILURE_TIMEOUT = 6;
2177
2178 // Easy Connect Failure event: General protocol failure.
2179 EASY_CONNECT_EVENT_FAILURE_GENERIC = 7;
2180
2181 // Easy Connect Failure event: Feature or option is not supported.
2182 EASY_CONNECT_EVENT_FAILURE_NOT_SUPPORTED = 8;
2183
2184 // Easy Connect Failure event: Invalid network provided to Easy Connect configurator.
2185 // Network must either be WPA3-Personal (SAE) or WPA2-Personal (PSK).
2186 EASY_CONNECT_EVENT_FAILURE_INVALID_NETWORK = 9;
2187 }
2188}
Roshan Pius89b233d2019-01-31 10:15:22 -08002189
2190// WifiConfigStore read/write metrics.
2191message WifiConfigStoreIO {
2192 // Histogram of config store read durations.
2193 repeated DurationBucket read_durations = 1;
2194
2195 // Histogram of config store write durations.
2196 repeated DurationBucket write_durations = 2;
2197
2198 // Total Number of instances of write/read duration in this duration bucket.
2199 message DurationBucket {
2200 // Bucket covers duration : [range_start_ms, range_end_ms)
2201 // The (inclusive) lower bound of read/write duration represented by this bucket
2202 optional int32 range_start_ms = 1;
2203
2204 // The (exclusive) upper bound of read/write duration represented by this bucket
2205 optional int32 range_end_ms = 2;
2206
2207 // Number of read/write durations that fit into this bucket
2208 optional int32 count = 3;
2209 }
2210}