blob: c256fb270fd97cff3dc34e090de6fb432fab5977 [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;
David Su44306932019-02-12 16:53:46 -0800524
525 // Link Probe metrics
526 optional LinkProbeStats link_probe_stats = 139;
David Sua04f5052019-02-20 17:42:28 -0800527
528 // List of NetworkSelectionExperimentDecisions stats for each experiment
529 repeated NetworkSelectionExperimentDecisions network_selection_experiment_decisions_list = 140;
Roshan Pius3f30ba82019-02-08 11:55:55 -0800530
531 // Network Request API surface metrics.
532 optional WifiNetworkRequestApiLog wifi_network_request_api_log = 141;
533
534 // Network Suggestion API surface metrics.
535 optional WifiNetworkSuggestionApiLog wifi_network_suggestion_api_log = 142;
Ahmed ElArabawy048e1482019-03-25 10:42:04 -0700536
537 // WifiLock statistics
538 optional WifiLockStats wifi_lock_stats = 143;
Glen Kuhne94814572016-10-25 12:40:35 -0700539}
540
541// Information that gets logged for every WiFi connection.
542message RouterFingerPrint {
543
544 enum RoamType {
545
546 // Type is unknown.
547 ROAM_TYPE_UNKNOWN = 0;
548
549 // No roaming - usually happens on a single band (2.4 GHz) router.
550 ROAM_TYPE_NONE = 1;
551
552 // Enterprise router.
553 ROAM_TYPE_ENTERPRISE = 2;
554
555 // DBDC => Dual Band Dual Concurrent essentially a router that
556 // supports both 2.4 GHz and 5 GHz bands.
557 ROAM_TYPE_DBDC = 3;
558 }
559
560 enum Auth {
561
562 // Auth is unknown.
563 AUTH_UNKNOWN = 0;
564
565 // No authentication.
566 AUTH_OPEN = 1;
567
568 // If the router uses a personal authentication.
569 AUTH_PERSONAL = 2;
570
571 // If the router is setup for enterprise authentication.
572 AUTH_ENTERPRISE = 3;
573 }
574
575 enum RouterTechnology {
576
577 // Router is unknown.
578 ROUTER_TECH_UNKNOWN = 0;
579
580 // Router Channel A.
581 ROUTER_TECH_A = 1;
582
583 // Router Channel B.
584 ROUTER_TECH_B = 2;
585
586 // Router Channel G.
587 ROUTER_TECH_G = 3;
588
589 // Router Channel N.
590 ROUTER_TECH_N = 4;
591
592 // Router Channel AC.
593 ROUTER_TECH_AC = 5;
594
595 // When the channel is not one of the above.
596 ROUTER_TECH_OTHER = 6;
597 }
598
599 optional RoamType roam_type = 1;
600
601 // Channel on which the connection takes place.
602 optional int32 channel_info = 2;
603
604 // DTIM setting of the router.
605 optional int32 dtim = 3;
606
607 // Authentication scheme of the router.
608 optional Auth authentication = 4;
609
610 // If the router is hidden.
611 optional bool hidden = 5;
612
613 // Channel information.
614 optional RouterTechnology router_technology = 6;
615
616 // whether ipv6 is supported.
617 optional bool supports_ipv6 = 7;
618
619 // If the router is a passpoint / hotspot 2.0 network
620 optional bool passpoint = 8;
621}
622
623message ConnectionEvent {
624
625 // Roam Type.
626 enum RoamType {
627
628 // Type is unknown.
629 ROAM_UNKNOWN = 0;
630
631 // No roaming.
Hai Shaloma18c32c2019-01-22 10:01:09 -0800632 ROAM_NONE = 1;
Glen Kuhne94814572016-10-25 12:40:35 -0700633
634 // DBDC roaming.
635 ROAM_DBDC = 2;
636
637 // Enterprise roaming.
638 ROAM_ENTERPRISE = 3;
639
640 // User selected roaming.
641 ROAM_USER_SELECTED = 4;
642
643 // Unrelated.
644 ROAM_UNRELATED = 5;
645 }
646
647 // Connectivity Level Failure.
648 enum ConnectivityLevelFailure {
649
650 // Failure is unknown.
651 HLF_UNKNOWN = 0;
652
653 // No failure.
654 HLF_NONE = 1;
655
656 // DHCP failure.
657 HLF_DHCP = 2;
658
659 // No internet connection.
660 HLF_NO_INTERNET = 3;
661
662 // No internet connection.
663 HLF_UNWANTED = 4;
664 }
665
Mingguang Xu7d2adc12019-02-12 09:07:35 -0800666 // Level 2 failure reason.
667 enum Level2FailureReason {
668
669 // Unknown default
670 FAILURE_REASON_UNKNOWN = 0;
671
672 // The reason code if there is no error during authentication. It could
673 // also imply that there no authentication in progress.
674 AUTH_FAILURE_NONE = 1;
675
676 // The reason code if there was a timeout authenticating.
677 AUTH_FAILURE_TIMEOUT = 2;
678
679 // The reason code if there was a wrong password while authenticating.
680 AUTH_FAILURE_WRONG_PSWD = 3;
681
682 // The reason code if there was EAP failure while authenticating.
683 AUTH_FAILURE_EAP_FAILURE = 4;
684 }
685
David Su21709bc2019-02-24 15:26:50 -0800686 // Entity that recommended connecting to this network.
687 enum ConnectionNominator {
688 // Unknown nominator
689 NOMINATOR_UNKNOWN = 0;
690
691 // User selected network manually
692 NOMINATOR_MANUAL = 1;
693
694 // Saved network
695 NOMINATOR_SAVED = 2;
696
697 // Suggestion API
698 NOMINATOR_SUGGESTION = 3;
699
700 // Passpoint
701 NOMINATOR_PASSPOINT = 4;
702
703 // Carrier suggestion
704 NOMINATOR_CARRIER = 5;
705
706 // External scorer
707 NOMINATOR_EXTERNAL_SCORED = 6;
708
David Sua75b6392019-03-21 20:34:22 -0700709 // Network Specifier
710 NOMINATOR_SPECIFIER = 7;
David Su21709bc2019-02-24 15:26:50 -0800711
712 // User connected choice override
713 NOMINATOR_SAVED_USER_CONNECT_CHOICE = 8;
714
715 // Open Network Available Pop-up
716 NOMINATOR_OPEN_NETWORK_AVAILABLE = 9;
717 }
718
Glen Kuhne94814572016-10-25 12:40:35 -0700719 // Start time of the connection.
720 optional int64 start_time_millis = 1;// [(datapol.semantic_type) = ST_TIMESTAMP];
721
722 // Duration to connect.
723 optional int32 duration_taken_to_connect_millis = 2;
724
725 // Router information.
726 optional RouterFingerPrint router_fingerprint = 3;
727
728 // RSSI at the start of the connection.
729 optional int32 signal_strength = 4;
730
731 // Roam Type.
732 optional RoamType roam_type = 5;
733
734 // Result of the connection.
735 optional int32 connection_result = 6;
736
737 // Reasons for level 2 failure (needs to be coordinated with wpa-supplicant).
738 optional int32 level_2_failure_code = 7;
739
740 // Failures that happen at the connectivity layer.
741 optional ConnectivityLevelFailure connectivity_level_failure_code = 8;
742
743 // Has bug report been taken.
744 optional bool automatic_bug_report_taken = 9;
xshu483a45b2019-02-08 13:24:02 -0800745
746 // Connection is using locally generated random MAC address.
747 optional bool use_randomized_mac = 10 [default = false];
David Su21709bc2019-02-24 15:26:50 -0800748
749 // Who chose to connect.
750 optional ConnectionNominator connection_nominator = 11;
751
752 // The currently running network selector when this connection event occurred.
753 optional int32 network_selector_experiment_id = 12;
Mingguang Xu7d2adc12019-02-12 09:07:35 -0800754
755 // Breakdown of level_2_failure_code with more detailed reason.
756 optional Level2FailureReason level_2_failure_reason = 13
757 [default = FAILURE_REASON_UNKNOWN];
Glen Kuhne94814572016-10-25 12:40:35 -0700758}
759
760// Number of occurrences of a specific RSSI poll rssi value
761message RssiPollCount {
762 // RSSI
763 optional int32 rssi = 1;
764
765 // Number of RSSI polls with 'rssi'
766 optional int32 count = 2;
xshu122886e2018-05-16 15:38:49 -0700767
768 // Beacon frequency of the channel in MHz
769 optional int32 frequency = 3;
Glen Kuhne94814572016-10-25 12:40:35 -0700770}
771
772// Number of occurrences of a specific alert reason value
773message AlertReasonCount {
774 // Alert reason
775 optional int32 reason = 1;
776
777 // Number of alerts with |reason|.
778 optional int32 count = 2;
779}
780
781// Counts the number of instances of a specific Wifi Score calculated by WifiScoreReport
782message WifiScoreCount {
783 // Wifi Score
784 optional int32 score = 1;
785
786 // Number of Wifi score reports with this score
787 optional int32 count = 2;
788}
789
Mingguang Xuca2aab12019-01-12 23:40:42 -0800790// Counts the number of instances of a specific Wifi Usability Score
791message WifiUsabilityScoreCount {
792 // Wifi Usability Score
793 optional int32 score = 1;
794
795 // Number of Wifi score reports with this score
796 optional int32 count = 2;
797}
798
Jong Wook Kime4aa37f2018-04-23 11:18:24 -0700799// Number of occurrences of a specific link speed (Mbps)
800// and sum of rssi (dBm) and rssi^2 (dBm^2)
801message LinkSpeedCount {
802 // Link speed (Mbps)
803 optional int32 link_speed_mbps = 1;
804
805 // Number of RSSI polls with link_speed
806 optional int32 count = 2;
807
808 // Sum of absolute values of rssi values (dBm)
809 optional int32 rssi_sum_dbm = 3;
810
811 // Sum of squares of rssi values (dBm^2)
812 optional int64 rssi_sum_of_squares_dbm_sq = 4;
813}
814
Glen Kuhne94814572016-10-25 12:40:35 -0700815// Number of occurrences of Soft AP session durations
816message SoftApDurationBucket {
817 // Bucket covers duration : [duration_sec, duration_sec + bucket_size_sec)
818 // The (inclusive) lower bound of Soft AP session duration represented by this bucket
819 optional int32 duration_sec = 1;
820
821 // The size of this bucket
822 optional int32 bucket_size_sec = 2;
823
824 // Number of soft AP session durations that fit into this bucket
825 optional int32 count = 3;
826}
827
828// Number of occurrences of a soft AP session return code
829message SoftApReturnCodeCount {
Rebecca Silberstein28d9de22017-01-24 10:42:59 -0800830
831 enum SoftApStartResult {
832
833 // SoftApManager return code unknown
834 SOFT_AP_RETURN_CODE_UNKNOWN = 0;
835
836 // SoftAp started successfully
837 SOFT_AP_STARTED_SUCCESSFULLY = 1;
838
839 // Catch all for failures with no specific failure reason
840 SOFT_AP_FAILED_GENERAL_ERROR = 2;
841
842 // SoftAp failed to start due to NO_CHANNEL error
843 SOFT_AP_FAILED_NO_CHANNEL = 3;
844 }
845
846 // Historical, no longer used for writing as of 01/2017.
847 optional int32 return_code = 1 [deprecated = true];
Glen Kuhne94814572016-10-25 12:40:35 -0700848
849 // Occurrences of this soft AP return code
850 optional int32 count = 2;
Rebecca Silberstein28d9de22017-01-24 10:42:59 -0800851
852 // Result of attempt to start SoftAp
853 optional SoftApStartResult start_result = 3;
Glen Kuhne94814572016-10-25 12:40:35 -0700854}
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700855
856message StaEvent {
857 message ConfigInfo {
858 // The set of key management protocols supported by this configuration.
859 optional uint32 allowed_key_management = 1 [default = 0];
860
861 // The set of security protocols supported by this configuration.
862 optional uint32 allowed_protocols = 2 [default = 0];
863
864 // The set of authentication protocols supported by this configuration.
865 optional uint32 allowed_auth_algorithms = 3 [default = 0];
866
867 // The set of pairwise ciphers for WPA supported by this configuration.
868 optional uint32 allowed_pairwise_ciphers = 4 [default = 0];
869
870 // The set of group ciphers supported by this configuration.
871 optional uint32 allowed_group_ciphers = 5;
872
873 // Is this a 'hidden network'
874 optional bool hidden_ssid = 6;
875
876 // Is this a Hotspot 2.0 / passpoint network
877 optional bool is_passpoint = 7;
878
879 // Is this an 'ephemeral' network (Not in saved network list, recommended externally)
880 optional bool is_ephemeral = 8;
881
882 // Has a successful connection ever been established using this WifiConfiguration
883 optional bool has_ever_connected = 9;
884
885 // RSSI of the scan result candidate associated with this WifiConfiguration
886 optional int32 scan_rssi = 10 [default = -127];
887
888 // Frequency of the scan result candidate associated with this WifiConfiguration
889 optional int32 scan_freq = 11 [default = -1];
890 }
891
892 enum EventType {
893 // Default/Invalid event
894 TYPE_UNKNOWN = 0;
895
896 // Supplicant Association Rejection event. Code contains the 802.11
897 TYPE_ASSOCIATION_REJECTION_EVENT = 1;
898
899 // Supplicant L2 event,
900 TYPE_AUTHENTICATION_FAILURE_EVENT = 2;
901
902 // Supplicant L2 event
903 TYPE_NETWORK_CONNECTION_EVENT = 3;
904
905 // Supplicant L2 event
906 TYPE_NETWORK_DISCONNECTION_EVENT = 4;
907
908 // Supplicant L2 event
909 TYPE_SUPPLICANT_STATE_CHANGE_EVENT = 5;
910
911 // Supplicant L2 event
912 TYPE_CMD_ASSOCIATED_BSSID = 6;
913
914 // IP Manager successfully completed IP Provisioning
915 TYPE_CMD_IP_CONFIGURATION_SUCCESSFUL = 7;
916
917 // IP Manager failed to complete IP Provisioning
918 TYPE_CMD_IP_CONFIGURATION_LOST = 8;
919
920 // IP Manager lost reachability to network neighbors
921 TYPE_CMD_IP_REACHABILITY_LOST = 9;
922
923 // Indicator that Supplicant is targeting a BSSID for roam/connection
924 TYPE_CMD_TARGET_BSSID = 10;
925
926 // Wifi framework is initiating a connection attempt
927 TYPE_CMD_START_CONNECT = 11;
928
929 // Wifi framework is initiating a roaming connection attempt
930 TYPE_CMD_START_ROAM = 12;
931
932 // SystemAPI connect() command, Settings App
933 TYPE_CONNECT_NETWORK = 13;
934
935 // Network Agent has validated the internet connection (Captive Portal Check success, or user
936 // validation)
937 TYPE_NETWORK_AGENT_VALID_NETWORK = 14;
938
939 // Framework initiated disconnect. Sometimes generated to give an extra reason for a disconnect
940 // Should typically be followed by a NETWORK_DISCONNECTION_EVENT with a local_gen = true
941 TYPE_FRAMEWORK_DISCONNECT = 15;
Michael Plassbb367b62017-10-06 10:29:51 -0700942
943 // The NetworkAgent score for wifi has changed in a way that may impact
944 // connectivity
945 TYPE_SCORE_BREACH = 16;
Jong Wook Kim01ad38b2018-04-09 10:14:11 -0700946
947 // Framework changed Sta interface MAC address
948 TYPE_MAC_CHANGE = 17;
Jong Wook Kimb56979f2018-08-08 14:50:18 -0700949
950 // Wifi is turned on
951 TYPE_WIFI_ENABLED = 18;
952
953 // Wifi is turned off
954 TYPE_WIFI_DISABLED = 19;
Mingguang Xuca2aab12019-01-12 23:40:42 -0800955
956 // The NetworkAgent Wifi usability score has changed in a way that may
957 // impact connectivity
958 TYPE_WIFI_USABILITY_SCORE_BREACH = 20;
David Sua847e582019-04-02 17:45:58 -0700959
960 // Link probe was performed
961 TYPE_LINK_PROBE = 21;
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700962 }
963
964 enum FrameworkDisconnectReason {
965 // default/none/unknown value
966 DISCONNECT_UNKNOWN = 0;
967
968 // API DISCONNECT
969 DISCONNECT_API = 1;
970
971 // Some framework internal reason (generic)
972 DISCONNECT_GENERIC = 2;
973
974 // Network Agent network validation failed, user signaled network unwanted
975 DISCONNECT_UNWANTED = 3;
976
977 // Roaming timed out
978 DISCONNECT_ROAM_WATCHDOG_TIMER = 4;
979
980 // P2P service requested wifi disconnect
981 DISCONNECT_P2P_DISCONNECT_WIFI_REQUEST = 5;
982
983 // SIM was removed while using a SIM config
984 DISCONNECT_RESET_SIM_NETWORKS = 6;
985 }
986
987 // Authentication Failure reasons as reported through the API.
988 enum AuthFailureReason {
989 // Unknown default
990 AUTH_FAILURE_UNKNOWN = 0;
991
992 // The reason code if there is no error during authentication. It could also imply that there no
993 // authentication in progress,
994 AUTH_FAILURE_NONE = 1;
995
996 // The reason code if there was a timeout authenticating.
997 AUTH_FAILURE_TIMEOUT = 2;
998
999 // The reason code if there was a wrong password while authenticating.
1000 AUTH_FAILURE_WRONG_PSWD = 3;
1001
1002 // The reason code if there was EAP failure while authenticating.
1003 AUTH_FAILURE_EAP_FAILURE = 4;
1004 }
1005
1006 // What event was this
1007 optional EventType type = 1;
1008
1009 // 80211 death reason code, relevant to NETWORK_DISCONNECTION_EVENTs
1010 optional int32 reason = 2 [default = -1];
1011
1012 // 80211 Association Status code, relevant to ASSOCIATION_REJECTION_EVENTs
1013 optional int32 status = 3 [default = -1];
1014
1015 // Designates whether a NETWORK_DISCONNECT_EVENT was by the STA or AP
1016 optional bool local_gen = 4 [default = false];
1017
1018 // Network information from the WifiConfiguration of a framework initiated connection attempt
1019 optional ConfigInfo config_info = 5;
1020
1021 // RSSI from the last rssi poll (Only valid for active connections)
1022 optional int32 last_rssi = 6 [default = -127];
1023
1024 // Link speed from the last rssi poll (Only valid for active connections)
1025 optional int32 last_link_speed = 7 [default = -1];
1026
1027 // Frequency from the last rssi poll (Only valid for active connections)
1028 optional int32 last_freq = 8 [default = -1];
1029
1030 // Enum used to define bit positions in the supplicant_state_change_bitmask
1031 // See {@code frameworks/base/wifi/java/android/net/wifi/SupplicantState.java} for documentation
1032 enum SupplicantState {
1033 STATE_DISCONNECTED = 0;
1034
1035 STATE_INTERFACE_DISABLED = 1;
1036
1037 STATE_INACTIVE = 2;
1038
1039 STATE_SCANNING = 3;
1040
1041 STATE_AUTHENTICATING = 4;
1042
1043 STATE_ASSOCIATING = 5;
1044
1045 STATE_ASSOCIATED = 6;
1046
1047 STATE_FOUR_WAY_HANDSHAKE = 7;
1048
1049 STATE_GROUP_HANDSHAKE = 8;
1050
1051 STATE_COMPLETED = 9;
1052
1053 STATE_DORMANT = 10;
1054
1055 STATE_UNINITIALIZED = 11;
1056
1057 STATE_INVALID = 12;
1058 }
1059
Jong Wook Kim411cab92018-04-26 15:09:23 -07001060 // Bit mask of all supplicant state changes that occurred since the last event
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -07001061 optional uint32 supplicant_state_changes_bitmask = 9 [default = 0];
1062
1063 // The number of milliseconds that have elapsed since the device booted
1064 optional int64 start_time_millis = 10 [default = 0];
1065
1066 optional FrameworkDisconnectReason framework_disconnect_reason = 11 [default = DISCONNECT_UNKNOWN];
1067
Jong Wook Kim411cab92018-04-26 15:09:23 -07001068 // Flag which indicates if an association rejection event occurred due to a timeout
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -07001069 optional bool association_timed_out = 12 [default = false];
1070
1071 // Authentication failure reason, as reported by WifiManager (calculated from state & deauth code)
1072 optional AuthFailureReason auth_failure_reason = 13 [default = AUTH_FAILURE_UNKNOWN];
Michael Plassbb367b62017-10-06 10:29:51 -07001073
1074 // NetworkAgent score of connected wifi
1075 optional int32 last_score = 14 [default = -1];
Mingguang Xuca2aab12019-01-12 23:40:42 -08001076
1077 // NetworkAgent Wifi usability score of connected wifi
1078 optional int32 last_wifi_usability_score = 15 [default = -1];
Mingguang Xue7e344a2019-01-21 16:26:45 -08001079
1080 // Prediction horizon (in second) of Wifi usability score provided by external
1081 // system app
1082 optional int32 last_prediction_horizon_sec = 16 [default = -1];
David Sua847e582019-04-02 17:45:58 -07001083
1084 // Only valid if event type == TYPE_LINK_PROBE.
1085 // true if link probe succeeded, false otherwise.
1086 optional bool link_probe_was_success = 17;
1087
1088 // Only valid if event type == TYPE_LINK_PROBE and link_probe_was_success == true.
1089 // Elapsed time, in milliseconds, of a successful link probe.
1090 optional int32 link_probe_success_elapsed_time_ms = 18;
1091
1092 // Only valid if event type == TYPE_LINK_PROBE and link_probe_was_success == false.
1093 // Failure reason for an unsuccessful link probe.
1094 optional LinkProbeStats.LinkProbeFailureReason link_probe_failure_reason = 19;
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -07001095}
Etan Cohen737addc2017-04-26 08:01:57 -07001096
1097// Wi-Fi Aware metrics
1098message WifiAwareLog {
1099 // total number of unique apps that used Aware (measured on attach)
1100 optional int32 num_apps = 1;
1101
1102 // total number of unique apps that used an identity callback when attaching
1103 optional int32 num_apps_using_identity_callback = 2;
1104
1105 // maximum number of attaches for an app
1106 optional int32 max_concurrent_attach_sessions_in_app = 3;
1107
1108 // histogram of attach request results
1109 repeated NanStatusHistogramBucket histogram_attach_session_status = 4;
1110
1111 // maximum number of concurrent publish sessions in a single app
1112 optional int32 max_concurrent_publish_in_app = 5;
1113
1114 // maximum number of concurrent subscribe sessions in a single app
1115 optional int32 max_concurrent_subscribe_in_app = 6;
1116
1117 // maximum number of concurrent discovery (publish+subscribe) sessions in a single app
1118 optional int32 max_concurrent_discovery_sessions_in_app = 7;
1119
1120 // maximum number of concurrent publish sessions in the system
1121 optional int32 max_concurrent_publish_in_system = 8;
1122
1123 // maximum number of concurrent subscribe sessions in the system
1124 optional int32 max_concurrent_subscribe_in_system = 9;
1125
1126 // maximum number of concurrent discovery (publish+subscribe) sessions in the system
1127 optional int32 max_concurrent_discovery_sessions_in_system = 10;
1128
1129 // histogram of publish request results
1130 repeated NanStatusHistogramBucket histogram_publish_status = 11;
1131
1132 // histogram of subscribe request results
1133 repeated NanStatusHistogramBucket histogram_subscribe_status = 12;
1134
1135 // number of unique apps which experienced a discovery session creation failure due to lack of
1136 // resources
1137 optional int32 num_apps_with_discovery_session_failure_out_of_resources = 13;
1138
1139 // histogram of create ndp request results
1140 repeated NanStatusHistogramBucket histogram_request_ndp_status = 14;
1141
1142 // histogram of create ndp out-of-band (OOB) request results
1143 repeated NanStatusHistogramBucket histogram_request_ndp_oob_status = 15;
1144
1145 // maximum number of concurrent active data-interfaces (NDI) in a single app
1146 optional int32 max_concurrent_ndi_in_app = 19;
1147
1148 // maximum number of concurrent active data-interfaces (NDI) in the system
1149 optional int32 max_concurrent_ndi_in_system = 20;
1150
1151 // maximum number of concurrent data-paths (NDP) in a single app
1152 optional int32 max_concurrent_ndp_in_app = 21;
1153
1154 // maximum number of concurrent data-paths (NDP) in the system
1155 optional int32 max_concurrent_ndp_in_system = 22;
1156
1157 // maximum number of concurrent secure data-paths (NDP) in a single app
1158 optional int32 max_concurrent_secure_ndp_in_app = 23;
1159
1160 // maximum number of concurrent secure data-paths (NDP) in the system
1161 optional int32 max_concurrent_secure_ndp_in_system = 24;
1162
1163 // maximum number of concurrent data-paths (NDP) per data-interface (NDI)
1164 optional int32 max_concurrent_ndp_per_ndi = 25;
1165
1166 // histogram of durations of Aware being available
1167 repeated HistogramBucket histogram_aware_available_duration_ms = 26;
1168
1169 // histogram of durations of Aware being enabled
1170 repeated HistogramBucket histogram_aware_enabled_duration_ms = 27;
1171
1172 // histogram of duration (in ms) of attach sessions
1173 repeated HistogramBucket histogram_attach_duration_ms = 28;
1174
1175 // histogram of duration (in ms) of publish sessions
1176 repeated HistogramBucket histogram_publish_session_duration_ms = 29;
1177
1178 // histogram of duration (in ms) of subscribe sessions
1179 repeated HistogramBucket histogram_subscribe_session_duration_ms = 30;
1180
1181 // histogram of duration (in ms) of data-paths (NDP)
1182 repeated HistogramBucket histogram_ndp_session_duration_ms = 31;
1183
1184 // histogram of usage (in MB) of data-paths (NDP)
1185 repeated HistogramBucket histogram_ndp_session_data_usage_mb = 32;
1186
1187 // histogram of usage (in MB) of data-path creation time (in ms) measured as request -> confirm
1188 repeated HistogramBucket histogram_ndp_creation_time_ms = 33;
1189
1190 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: minimum
1191 optional int64 ndp_creation_time_ms_min = 34;
1192
1193 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: maximum
1194 optional int64 ndp_creation_time_ms_max = 35;
1195
1196 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: sum
1197 optional int64 ndp_creation_time_ms_sum = 36;
1198
1199 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: sum of sq
1200 optional int64 ndp_creation_time_ms_sum_of_sq = 37;
1201
1202 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: number of
1203 // samples
1204 optional int64 ndp_creation_time_ms_num_samples = 38;
1205
1206 // total time within the logging window that aware was available
1207 optional int64 available_time_ms = 39;
1208
1209 // total time within the logging window that aware was enabled
1210 optional int64 enabled_time_ms = 40;
1211
Etan Cohenfa723572018-03-13 07:25:50 -07001212 // maximum number of concurrent publish sessions enabling ranging in a single app
1213 optional int32 max_concurrent_publish_with_ranging_in_app = 41;
1214
1215 // maximum number of concurrent subscribe sessions specifying a geofence in a single app
1216 optional int32 max_concurrent_subscribe_with_ranging_in_app = 42;
1217
1218 // maximum number of concurrent publish sessions enabling ranging in the system
1219 optional int32 max_concurrent_publish_with_ranging_in_system = 43;
1220
1221 // maximum number of concurrent subscribe sessions specifying a geofence in the system
1222 optional int32 max_concurrent_subscribe_with_ranging_in_system = 44;
1223
1224 // histogram of subscribe session geofence minimum (only when specified)
1225 repeated HistogramBucket histogram_subscribe_geofence_min = 45;
1226
1227 // histogram of subscribe session geofence maximum (only when specified)
1228 repeated HistogramBucket histogram_subscribe_geofence_max = 46;
1229
1230 // total number of subscribe sessions which enabled ranging
1231 optional int32 num_subscribes_with_ranging = 47;
1232
1233 // total number of matches (service discovery indication) with ranging provided
1234 optional int32 num_matches_with_ranging = 48;
1235
1236 // total number of matches (service discovery indication) for service discovery with ranging
1237 // enabled which did not trigger ranging
1238 optional int32 num_matches_without_ranging_for_ranging_enabled_subscribes = 49;
1239
Etan Cohen737addc2017-04-26 08:01:57 -07001240 // Histogram bucket for Wi-Fi Aware logs. Range is [start, end)
1241 message HistogramBucket {
1242 // lower range of the bucket (inclusive)
1243 optional int64 start = 1;
1244
1245 // upper range of the bucket (exclusive)
1246 optional int64 end = 2;
1247
1248 // number of samples in the bucket
1249 optional int32 count = 3;
1250 }
1251
1252 // Status of various NAN operations
1253 enum NanStatusTypeEnum {
1254 // constant to be used by proto
1255 UNKNOWN = 0;
1256
1257 // NAN operation succeeded
1258 SUCCESS = 1;
1259
1260 // NAN Discovery Engine/Host driver failures
1261 INTERNAL_FAILURE = 2;
1262
1263 // NAN OTA failures
1264 PROTOCOL_FAILURE = 3;
1265
1266 // The publish/subscribe discovery session id is invalid
1267 INVALID_SESSION_ID = 4;
1268
1269 // Out of resources to fufill request
1270 NO_RESOURCES_AVAILABLE = 5;
1271
1272 // Invalid arguments passed
1273 INVALID_ARGS = 6;
1274
1275 // Invalid peer id
1276 INVALID_PEER_ID = 7;
1277
1278 // Invalid NAN data-path (ndp) id
1279 INVALID_NDP_ID = 8;
1280
1281 // Attempting to enable NAN when not available, e.g. wifi is disabled
1282 NAN_NOT_ALLOWED = 9;
1283
1284 // Over the air ACK not received
1285 NO_OTA_ACK = 10;
1286
1287 // Attempting to enable NAN when already enabled
1288 ALREADY_ENABLED = 11;
1289
1290 // Can't queue tx followup message foor transmission
1291 FOLLOWUP_TX_QUEUE_FULL = 12;
1292
1293 // Unsupported concurrency of NAN and another feature - NAN disabled
1294 UNSUPPORTED_CONCURRENCY_NAN_DISABLED = 13;
1295
1296 // Unknown NanStatusType
1297 UNKNOWN_HAL_STATUS = 14;
1298 }
1299
1300 // Histogram bucket for Wi-Fi Aware (NAN) status.
1301 message NanStatusHistogramBucket {
1302 // status type defining the bucket
1303 optional NanStatusTypeEnum nan_status_type = 1;
1304
1305 // number of samples in the bucket
1306 optional int32 count = 2;
1307 }
1308}
1309
Glen Kuhnee2d67c02017-04-25 13:08:29 -07001310// Data point used to build 'Number of Connectable Network' histograms
1311message NumConnectableNetworksBucket {
1312 // Number of connectable networks seen in a scan result
1313 optional int32 num_connectable_networks = 1 [default = 0];
1314
1315 // Number of scan results with num_connectable_networks
1316 optional int32 count = 2 [default = 0];
1317}
Mehdi Alizadehd9163cf2017-08-10 18:20:25 -07001318
1319// Pno scan metrics
1320// Here "Pno Scan" refers to the session of offloaded scans, these metrics count the result of a
1321// single session, and not the individual scans within that session.
1322message PnoScanMetrics {
1323 // Total number of attempts to offload pno scans
1324 optional int32 num_pno_scan_attempts = 1;
1325
1326 // Total number of pno scans failed
1327 optional int32 num_pno_scan_failed = 2;
1328
1329 // Number of pno scans started successfully over offload
1330 optional int32 num_pno_scan_started_over_offload = 3;
1331
1332 // Number of pno scans failed over offload
1333 optional int32 num_pno_scan_failed_over_offload = 4;
1334
1335 // Total number of pno scans that found any network
1336 optional int32 num_pno_found_network_events = 5;
1337}
Stephen Chenfc0facb2017-09-14 14:35:15 -07001338
1339// Number of occurrences for a particular "Connect to Network" Notification or
1340// notification Action.
1341message ConnectToNetworkNotificationAndActionCount {
1342
1343 // "Connect to Network" notifications
1344 enum Notification {
1345
1346 // Default
1347 NOTIFICATION_UNKNOWN = 0;
1348
1349 // Initial notification with a recommended network.
1350 NOTIFICATION_RECOMMEND_NETWORK = 1;
1351
1352 // Notification when connecting to the recommended network.
1353 NOTIFICATION_CONNECTING_TO_NETWORK = 2;
1354
1355 // Notification when successfully connected to the network.
1356 NOTIFICATION_CONNECTED_TO_NETWORK = 3;
1357
1358 // Notification when failed to connect to network.
1359 NOTIFICATION_FAILED_TO_CONNECT = 4;
1360 }
1361
1362 // "Connect to Network" notification actions
1363 enum Action {
1364
1365 // Default
1366 ACTION_UNKNOWN = 0;
1367
1368 // User dismissed the "Connect to Network" notification.
1369 ACTION_USER_DISMISSED_NOTIFICATION = 1;
1370
1371 // User tapped action button to connect to recommended network.
1372 ACTION_CONNECT_TO_NETWORK = 2;
1373
1374 // User tapped action button to open Wi-Fi Settings.
1375 ACTION_PICK_WIFI_NETWORK = 3;
1376
1377 // User tapped "Failed to connect" notification to open Wi-Fi Settings.
1378 ACTION_PICK_WIFI_NETWORK_AFTER_CONNECT_FAILURE = 4;
1379 }
1380
1381 // Recommenders of the "Connect to Network" notification
1382 enum Recommender {
1383
1384 // Default.
1385 RECOMMENDER_UNKNOWN = 0;
1386
1387 // Open Network Available recommender.
1388 RECOMMENDER_OPEN = 1;
1389 }
1390
1391 // Notification Type.
1392 optional Notification notification = 1;
1393
1394 // Action Type.
1395 optional Action action = 2;
1396
1397 // Recommender Type.
1398 optional Recommender recommender = 3;
1399
1400 // Occurrences of this action.
1401 optional int32 count = 4;
1402}
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001403
1404// SoftAP event tracking sessions and client counts
1405message SoftApConnectedClientsEvent {
1406
1407 // Soft AP event Types
1408 enum SoftApEventType {
1409
1410 // Soft AP is Up and ready for use
1411 SOFT_AP_UP = 0;
1412
1413 // Soft AP is Down
1414 SOFT_AP_DOWN = 1;
1415
1416 // Number of connected soft AP clients has changed
1417 NUM_CLIENTS_CHANGED = 2;
1418 }
1419
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001420 // Soft AP channel bandwidth types
1421 enum ChannelBandwidth {
1422
1423 BANDWIDTH_INVALID = 0;
1424
1425 BANDWIDTH_20_NOHT = 1;
1426
1427 BANDWIDTH_20 = 2;
1428
1429 BANDWIDTH_40 = 3;
1430
1431 BANDWIDTH_80 = 4;
1432
1433 BANDWIDTH_80P80 = 5;
1434
1435 BANDWIDTH_160 = 6;
1436 }
1437
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001438 // Type of event being recorded
1439 optional SoftApEventType event_type = 1;
1440
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001441 // Time passed since last boot in milliseconds
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001442 optional int64 time_stamp_millis = 2;
1443
1444 // Number of connected clients if event_type is NUM_CLIENTS_CHANGED, otherwise zero.
1445 optional int32 num_connected_clients = 3;
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001446
1447 // Channel frequency used for Soft AP
1448 optional int32 channel_frequency = 4;
1449
1450 // Channel bandwidth used for Soft AP
1451 optional ChannelBandwidth channel_bandwidth = 5;
Jong Wook Kim72c49ee2017-10-26 13:16:36 -07001452}
1453
1454// Wps connection metrics
1455// Keeps track of Wi-Fi Protected Setup usage
1456message WpsMetrics {
1457 // Total number of wps connection attempts
1458 optional int32 num_wps_attempts = 1;
1459
1460 // Total number of wps connection successes
1461 optional int32 num_wps_success = 2;
1462
1463 // Total number of wps failures on start
1464 optional int32 num_wps_start_failure = 3;
1465
1466 // Total number of wps overlap failure
1467 optional int32 num_wps_overlap_failure = 4;
1468
1469 // Total number of wps timeout failure
1470 optional int32 num_wps_timeout_failure = 5;
1471
1472 // Total number of other wps failure during connection
1473 optional int32 num_wps_other_connection_failure = 6;
1474
1475 // Total number of supplicant failure after wps
1476 optional int32 num_wps_supplicant_failure = 7;
1477
1478 // Total number of wps cancellation
1479 optional int32 num_wps_cancellation = 8;
1480}
Siddharth Rayac8b69a2018-01-27 18:05:44 -08001481
1482// Power stats for Wifi
1483message WifiPowerStats {
1484
1485 // Duration of log (ms)
1486 optional int64 logging_duration_ms = 1;
1487
1488 // Energy consumed by wifi (mAh)
1489 optional double energy_consumed_mah = 2;
1490
1491 // Amount of time wifi is in idle (ms)
1492 optional int64 idle_time_ms = 3;
1493
1494 // Amount of time wifi is in rx (ms)
1495 optional int64 rx_time_ms = 4;
1496
1497 // Amount of time wifi is in tx (ms)
1498 optional int64 tx_time_ms = 5;
Blake Kragten354c83d2018-12-04 16:28:44 -08001499
1500 // Amount of time kernel is active because of wifi data (ms)
1501 optional int64 wifi_kernel_active_time_ms = 6;
1502
1503 // Number of packets sent (tx)
1504 optional int64 num_packets_tx = 7;
1505
1506 // Number of bytes sent (tx)
1507 optional int64 num_bytes_tx = 8;
1508
1509 // Number of packets received (rx)
1510 optional int64 num_packets_rx = 9;
1511
1512 // Number of bytes sent (rx)
1513 optional int64 num_bytes_rx = 10;
1514
1515 // Amount of time wifi is in sleep (ms)
1516 optional int64 sleep_time_ms = 11;
1517
1518 // Amount of time wifi is scanning (ms)
1519 optional int64 scan_time_ms = 12;
Blake Kragten0f8aa762019-01-31 16:05:15 -08001520
1521 // Actual monitored rail energy consumed by wifi (mAh)
1522 optional double monitored_rail_energy_consumed_mah = 13;
Ningyuan Wang72886332017-12-20 16:17:33 -08001523}
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001524
1525// Metrics for Wifi Wake
1526message WifiWakeStats {
1527 // An individual session for Wifi Wake
1528 message Session {
1529 // A Wifi Wake lifecycle event
1530 message Event {
1531 // Elapsed time in milliseconds since start of session.
1532 optional int64 elapsed_time_millis = 1;
1533
1534 // Number of scans that have occurred since start of session.
1535 optional int32 elapsed_scans = 2;
1536 }
1537
1538 // Start time of session in milliseconds.
1539 optional int64 start_time_millis = 1;
1540
Eric Schwarzenbach3cad6242018-03-26 10:23:40 -07001541 // The number of networks the lock was provided with at start.
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001542 optional int32 locked_networks_at_start = 2;
1543
Eric Schwarzenbach3cad6242018-03-26 10:23:40 -07001544 // The number of networks in the lock at the time of the initialize event. Only valid if
1545 // initialize_event is recorded.
1546 optional int32 locked_networks_at_initialize = 6;
1547
1548 // Event for fully initializing the WakeupLock (i.e. WakeupLock is "locked").
1549 optional Event initialize_event = 7;
1550
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001551 // Event for unlocking the WakeupLock. Does not occur if lock was initialized with 0 networks.
1552 optional Event unlock_event = 3;
1553
1554 // Event for triggering wakeup.
1555 optional Event wakeup_event = 4;
1556
1557 // Event for WifiWake reset event. This event marks the end of a session.
1558 optional Event reset_event = 5;
1559 }
1560
1561 // Total number of sessions for Wifi Wake.
1562 optional int32 num_sessions = 1;
1563
1564 // Session information for every Wifi Wake session (up to a maximum of 10).
1565 repeated Session sessions = 2;
Eric Schwarzenbach3cad6242018-03-26 10:23:40 -07001566
1567 // Number of ignored calls to start (due to WakeupController already being active).
1568 optional int32 num_ignored_starts = 3;
1569
1570 // Number of Wifi Wake sessions that have recorded wakeup events.
1571 optional int32 num_wakeups = 4;
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001572}
Etan Cohen4ec8dd32018-03-16 09:43:01 -07001573
1574// Metrics for Wi-Fi RTT
1575message WifiRttLog {
1576 // Number of RTT request API calls
1577 optional int32 num_requests = 1;
1578
1579 // Histogram of RTT operation overall status
1580 repeated RttOverallStatusHistogramBucket histogram_overall_status = 2;
1581
1582 // RTT to Access Points metrics
1583 optional RttToPeerLog rtt_to_ap = 3;
1584
1585 // RTT to Wi-Fi Aware peers metrics
1586 optional RttToPeerLog rtt_to_aware = 4;
1587
1588 // Metrics for a RTT to Peer (peer = AP or Wi-Fi Aware)
1589 message RttToPeerLog {
1590 // Total number of API calls
1591 optional int32 num_requests = 1;
1592
1593 // Total number of individual requests
1594 optional int32 num_individual_requests = 2;
1595
1596 // Total number of apps which requested RTT
1597 optional int32 num_apps = 3;
1598
1599 // Histogram of total number of RTT requests by an app (WifiRttManager#startRanging)
1600 repeated HistogramBucket histogram_num_requests_per_app = 4;
1601
1602 // Histogram of number of peers in a single RTT request (RangingRequest entries)
1603 repeated HistogramBucket histogram_num_peers_per_request = 5;
1604
1605 // Histogram of status of individual RTT operations (RangingResult entries)
1606 repeated RttIndividualStatusHistogramBucket histogram_individual_status = 6;
1607
1608 // Histogram of measured distances (RangingResult entries)
1609 repeated HistogramBucket histogram_distance = 7;
1610
1611 // Histogram of interval of RTT requests by an app (WifiRttManager#startRanging)
1612 repeated HistogramBucket histogram_request_interval_ms = 8;
1613 }
1614
Hai Shaloma18c32c2019-01-22 10:01:09 -08001615 // Histogram bucket for Wi-Fi RTT logs. Range is [start, end)
Etan Cohen4ec8dd32018-03-16 09:43:01 -07001616 message HistogramBucket {
1617 // lower range of the bucket (inclusive)
1618 optional int64 start = 1;
1619
1620 // upper range of the bucket (exclusive)
1621 optional int64 end = 2;
1622
1623 // number of samples in the bucket
1624 optional int32 count = 3;
1625 }
1626
1627 // Status codes for overall RTT operation
1628 enum RttOverallStatusTypeEnum {
1629 // constant to be used by proto
1630 OVERALL_UNKNOWN = 0;
1631
1632 // RTT operation succeeded (individual results may still fail)
1633 OVERALL_SUCCESS = 1;
1634
1635 // RTT operation failed (unspecified reason)
1636 OVERALL_FAIL = 2;
1637
1638 // RTT operation failed since RTT was not available (e.g. Airplane mode)
1639 OVERALL_RTT_NOT_AVAILABLE = 3;
1640
1641 // RTT operation timed-out: didn't receive response from HAL in expected time
1642 OVERALL_TIMEOUT = 4;
1643
1644 // RTT operation aborted since the app is spamming the service
1645 OVERALL_THROTTLE = 5;
1646
1647 // RTT request to HAL received immediate failure
1648 OVERALL_HAL_FAILURE = 6;
1649
1650 // RTT to Wi-Fi Aware peer using PeerHandle failed to get a MAC address translation
1651 OVERALL_AWARE_TRANSLATION_FAILURE = 7;
1652
1653 // RTT operation failed due to missing Location permission (post execution)
1654 OVERALL_LOCATION_PERMISSION_MISSING = 8;
1655 }
1656
1657 // Status codes for individual RTT operation
1658 enum RttIndividualStatusTypeEnum {
1659 // constant to be used by proto
1660 UNKNOWN = 0;
1661
1662 // RTT operation succeeded
1663 SUCCESS = 1;
1664
1665 // RTT failure: generic reason (no further information)
1666 FAILURE = 2;
1667
1668 // Target STA does not respond to request
1669 FAIL_NO_RSP = 3;
1670
1671 // Request rejected. Applies to 2-sided RTT only
1672 FAIL_REJECTED = 4;
1673
1674 // Operation not scheduled
1675 FAIL_NOT_SCHEDULED_YET = 5;
1676
1677 // Timing measurement times out
1678 FAIL_TM_TIMEOUT = 6;
1679
1680 // Target on different channel, cannot range
1681 FAIL_AP_ON_DIFF_CHANNEL = 7;
1682
1683 // Ranging not supported
1684 FAIL_NO_CAPABILITY = 8;
1685
1686 // Request aborted for unknown reason
1687 ABORTED = 9;
1688
1689 // Invalid T1-T4 timestamp
1690 FAIL_INVALID_TS = 10;
1691
1692 // 11mc protocol failed
1693 FAIL_PROTOCOL = 11;
1694
1695 // Request could not be scheduled
1696 FAIL_SCHEDULE = 12;
1697
1698 // Responder cannot collaborate at time of request
1699 FAIL_BUSY_TRY_LATER = 13;
1700
1701 // Bad request args
1702 INVALID_REQ = 14;
1703
1704 // WiFi not enabled
1705 NO_WIFI = 15;
1706
1707 // Responder overrides param info, cannot range with new params
1708 FAIL_FTM_PARAM_OVERRIDE = 16;
1709
1710 // HAL did not provide a result to a framework request
1711 MISSING_RESULT = 17;
1712 }
1713
1714 // Histogram bucket for Wi-Fi RTT overall operation status
1715 message RttOverallStatusHistogramBucket {
1716 // status type defining the bucket
1717 optional RttOverallStatusTypeEnum status_type = 1;
1718
1719 // number of samples in the bucket
1720 optional int32 count = 2;
1721 }
1722
1723 // Histogram bucket for Wi-Fi RTT individual operation status
1724 message RttIndividualStatusHistogramBucket {
1725 // status type defining the bucket
1726 optional RttIndividualStatusTypeEnum status_type = 1;
1727
1728 // number of samples in the bucket
1729 optional int32 count = 2;
1730 }
1731}
xshub483b722018-05-22 15:46:26 -07001732
1733// Usage data for the wifi radio while device is running on battery.
1734message WifiRadioUsage {
1735 // Duration of log (ms)
1736 optional int64 logging_duration_ms = 1;
1737
1738 // Total time for which the radio is awake due to scan.
1739 optional int64 scan_time_ms = 2;
Jong Wook Kim411cab92018-04-26 15:09:23 -07001740}
1741
1742message ExperimentValues {
1743 // Indicates if we are logging WifiIsUnusableEvent in metrics
1744 optional bool wifi_is_unusable_logging_enabled = 1;
1745
1746 // Minimum number of txBad to trigger a data stall
1747 optional int32 wifi_data_stall_min_tx_bad = 2;
1748
1749 // Minimum number of txSuccess to trigger a data stall
1750 // when rxSuccess is 0
1751 optional int32 wifi_data_stall_min_tx_success_without_rx = 3;
Jong Wook Kime4aa37f2018-04-23 11:18:24 -07001752
1753 // Indicates if we are logging LinkSpeedCount in metrics
1754 optional bool link_speed_counts_logging_enabled = 4;
Jong Wook Kim411cab92018-04-26 15:09:23 -07001755}
1756
1757message WifiIsUnusableEvent {
1758 enum TriggerType {
1759 // Default/Invalid event
1760 TYPE_UNKNOWN = 0;
1761
1762 // There is a data stall from tx failures
1763 TYPE_DATA_STALL_BAD_TX = 1;
1764
1765 // There is a data stall from rx failures
1766 TYPE_DATA_STALL_TX_WITHOUT_RX = 2;
1767
1768 // There is a data stall from both tx and rx failures
1769 TYPE_DATA_STALL_BOTH = 3;
1770
1771 // Firmware generated an alert
1772 TYPE_FIRMWARE_ALERT = 4;
Mingguang Xucd53d0b2019-03-15 15:42:07 -07001773
1774 // IP Manager lost reachability to network neighbors
1775 TYPE_IP_REACHABILITY_LOST = 5;
Jong Wook Kim411cab92018-04-26 15:09:23 -07001776 }
1777
1778 // What event triggered WifiIsUnusableEvent.
1779 optional TriggerType type = 1;
1780
1781 // The timestamp at which this event occurred.
1782 // Measured in milliseconds that have elapsed since the device booted.
1783 optional int64 start_time_millis = 2;
1784
1785 // NetworkAgent score of connected wifi.
1786 // Defaults to -1 if the score was never set.
1787 optional int32 last_score = 3 [default = -1];
1788
1789 // Delta of successfully transmitted (ACKed) unicast data packets
1790 // between the last two WifiLinkLayerStats.
1791 optional int64 tx_success_delta = 4;
1792
1793 // Delta of transmitted unicast data retry packets
1794 // between the last two WifiLinkLayerStats.
1795 optional int64 tx_retries_delta = 5;
1796
1797 // Delta of lost (not ACKed) transmitted unicast data packets
1798 // between the last two WifiLinkLayerStats.
1799 optional int64 tx_bad_delta = 6;
1800
1801 // Delta of received unicast data packets
1802 // between the last two WifiLinkLayerStats.
1803 optional int64 rx_success_delta = 7;
1804
1805 // Time in millisecond between the last two WifiLinkLayerStats.
1806 optional int64 packet_update_time_delta = 8;
1807
1808 // The timestamp at which the last WifiLinkLayerStats was updated.
1809 // Measured in milliseconds that have elapsed since the device booted.
1810 optional int64 last_link_layer_stats_update_time = 9;
1811
1812 // Firmware alert code. Only valid when the event was triggered by a firmware alert, otherwise -1.
1813 optional int32 firmware_alert_code = 10 [default = -1];
Mingguang Xuca2aab12019-01-12 23:40:42 -08001814
1815 // NetworkAgent wifi usability score of connected wifi.
1816 // Defaults to -1 if the score was never set.
1817 optional int32 last_wifi_usability_score = 11 [default = -1];
Mingguang Xue7e344a2019-01-21 16:26:45 -08001818
1819 // Prediction horizon (in second) of Wifi usability score provided by external
1820 // system app
1821 optional int32 last_prediction_horizon_sec = 12 [default = -1];
Mingguang Xu7b6e1842019-02-27 21:29:00 -08001822
1823 // Whether screen status is on when WifiIsUnusableEvent happens.
1824 optional bool screen_on = 13 [default = false];
Ahmed ElArabawyba64b612018-06-15 09:17:45 -07001825}
Ecco Park5a403002018-07-23 15:53:10 -07001826
1827message PasspointProfileTypeCount {
1828 enum EapMethod {
1829 // Unknown Type
1830 TYPE_UNKNOWN = 0;
1831
1832 // EAP_TLS (13)
1833 TYPE_EAP_TLS = 1;
1834
1835 // EAP_TTLS (21)
1836 TYPE_EAP_TTLS = 2;
1837
1838 // EAP_SIM (18)
1839 TYPE_EAP_SIM = 3;
1840
1841 // EAP_AKA (23)
1842 TYPE_EAP_AKA = 4;
1843
1844 // EAP_AKA_PRIME (50)
1845 TYPE_EAP_AKA_PRIME = 5;
1846 }
1847
1848 // Eap method type set in Passpoint profile
1849 optional EapMethod eap_method_type = 1;
1850
1851 // Num of installed Passpoint profile with same eap method
1852 optional int32 count = 2;
xshu0e0dea42018-09-17 17:30:15 -07001853}
1854
1855message WifiLinkLayerUsageStats {
1856 // Total logging duration in ms.
1857 optional int64 logging_duration_ms = 1;
1858
1859 // Total time the wifi radio is on in ms over the logging duration.
1860 optional int64 radio_on_time_ms = 2;
1861
1862 // Total time the wifi radio is doing tx in ms over the logging duration.
1863 optional int64 radio_tx_time_ms = 3;
1864
1865 // Total time the wifi radio is doing rx in ms over the logging duration.
1866 optional int64 radio_rx_time_ms = 4;
1867
1868 // Total time the wifi radio is scanning in ms over the logging duration.
1869 optional int64 radio_scan_time_ms = 5;
xshu0f91dd62018-11-08 15:51:07 -08001870
1871 // Total time the wifi radio spent doing nan scans in ms over the logging duration.
1872 optional int64 radio_nan_scan_time_ms = 6;
1873
1874 // Total time the wifi radio spent doing background scans in ms over the logging duration.
1875 optional int64 radio_background_scan_time_ms = 7;
1876
1877 // Total time the wifi radio spent doing roam scans in ms over the logging duration.
1878 optional int64 radio_roam_scan_time_ms = 8;
1879
1880 // Total time the wifi radio spent doing pno scans in ms over the logging duration.
1881 optional int64 radio_pno_scan_time_ms = 9;
1882
1883 // Total time the wifi radio spent doing hotspot 2.0 scans and GAS exchange
1884 // in ms over the logging duration.
1885 optional int64 radio_hs20_scan_time_ms = 10;
xshua33726e2018-09-24 15:02:23 -07001886}
1887
1888message WifiUsabilityStatsEntry {
Mingguang Xubed08852019-01-24 23:00:10 -08001889 // Status codes for link probe status
1890 enum LinkProbeStatus {
1891 // Link probe status is unknown
1892 PROBE_STATUS_UNKNOWN = 0;
1893
1894 // Link probe is not triggered
1895 PROBE_STATUS_NO_PROBE = 1;
1896
1897 // Link probe is triggered and the result is success
1898 PROBE_STATUS_SUCCESS = 2;
1899
1900 // Link probe is triggered and the result is failure
1901 PROBE_STATUS_FAILURE = 3;
1902 }
1903
Kai Shidfef3832019-02-26 14:55:09 -08001904 // Codes for cellular data network type
1905 enum CellularDataNetworkType {
1906 // Unknown network
1907 NETWORK_TYPE_UNKNOWN = 0;
1908
1909 // GSM network
1910 NETWORK_TYPE_GSM = 1;
1911
1912 // CDMA network
1913 NETWORK_TYPE_CDMA = 2;
1914
1915 // CDMA EVDO network
1916 NETWORK_TYPE_EVDO_0 = 3;
1917
1918 // WCDMA network
1919 NETWORK_TYPE_UMTS = 4;
1920
1921 // TDSCDMA network
1922 NETWORK_TYPE_TD_SCDMA = 5;
1923
1924 // LTE network
1925 NETWORK_TYPE_LTE = 6;
1926
1927 // NR network
1928 NETWORK_TYPE_NR = 7;
1929 }
1930
xshua33726e2018-09-24 15:02:23 -07001931 // Absolute milliseconds from device boot when these stats were sampled
1932 optional int64 time_stamp_ms = 1;
1933
1934 // The RSSI at the sample time
1935 optional int32 rssi = 2;
1936
1937 // Link speed at the sample time in Mbps
1938 optional int32 link_speed_mbps = 3;
1939
1940 // The total number of tx success counted from the last radio chip reset
1941 optional int64 total_tx_success = 4;
1942
1943 // The total number of MPDU data packet retries counted from the last radio chip reset
1944 optional int64 total_tx_retries = 5;
1945
1946 // The total number of tx bad counted from the last radio chip reset
1947 optional int64 total_tx_bad = 6;
1948
1949 // The total number of rx success counted from the last radio chip reset
1950 optional int64 total_rx_success = 7;
1951
1952 // The total time the wifi radio is on in ms counted from the last radio chip reset
1953 optional int64 total_radio_on_time_ms = 8;
1954
1955 // The total time the wifi radio is doing tx in ms counted from the last radio chip reset
1956 optional int64 total_radio_tx_time_ms = 9;
1957
1958 // The total time the wifi radio is doing rx in ms counted from the last radio chip reset
1959 optional int64 total_radio_rx_time_ms = 10;
1960
1961 // The total time spent on all types of scans in ms counted from the last radio chip reset
1962 optional int64 total_scan_time_ms = 11;
1963
1964 // The total time spent on nan scans in ms counted from the last radio chip reset
1965 optional int64 total_nan_scan_time_ms = 12;
1966
1967 // The total time spent on background scans in ms counted from the last radio chip reset
1968 optional int64 total_background_scan_time_ms = 13;
1969
1970 // The total time spent on roam scans in ms counted from the last radio chip reset
1971 optional int64 total_roam_scan_time_ms = 14;
1972
1973 // The total time spent on pno scans in ms counted from the last radio chip reset
1974 optional int64 total_pno_scan_time_ms = 15;
1975
1976 // The total time spent on hotspot2.0 scans and GAS exchange in ms counted from the last radio
1977 // chip reset
1978 optional int64 total_hotspot_2_scan_time_ms = 16;
Mingguang Xuca2aab12019-01-12 23:40:42 -08001979
1980 // Internal framework Wifi score
1981 optional int32 wifi_score = 17;
1982
1983 // Wifi usability score provided by external system app
1984 optional int32 wifi_usability_score = 18;
1985
1986 // Sequence number from external system app to framework
1987 optional int32 seq_num_to_framework = 19;
Mingguang Xu86833142019-01-09 13:54:29 -08001988
1989 // The total time CCA is on busy status on the current frequency in ms
1990 // counted from the last radio chip reset
1991 optional int64 total_cca_busy_freq_time_ms = 20;
1992
1993 // The total radio on time of the current frequency from the last radio
1994 // chip reset
1995 optional int64 total_radio_on_freq_time_ms = 21;
1996
1997 // The total number of beacons received from the last radio chip reset
1998 optional int64 total_beacon_rx = 22;
Mingguang Xue7e344a2019-01-21 16:26:45 -08001999
2000 // Prediction horizon (in second) of Wifi usability score provided by external
2001 // system app
2002 optional int32 prediction_horizon_sec = 23;
Mingguang Xubed08852019-01-24 23:00:10 -08002003
2004 // The link probe status since last stats update
2005 optional LinkProbeStatus probe_status_since_last_update = 24;
2006
2007 // The elapsed time of the most recent link probe since last stats update;
Mingguang Xue77cabc2019-03-08 09:58:23 -08002008 optional int32 probe_elapsed_time_since_last_update_ms = 25;
Mingguang Xubed08852019-01-24 23:00:10 -08002009
2010 // The MCS rate of the most recent link probe since last stats update
2011 optional int32 probe_mcs_rate_since_last_update = 26;
2012
2013 // Rx link speed at the sample time in Mbps
2014 optional int32 rx_link_speed_mbps = 27;
Mingguang Xu96bcabe2019-01-30 22:36:07 -08002015
2016 // Sequence number generated by framework
2017 optional int32 seq_num_inside_framework = 28;
2018
2019 // Whether current entry is for the same BSSID on the same frequency compared
2020 // to last entry
2021 optional bool is_same_bssid_and_freq = 29;
Kai Shidfef3832019-02-26 14:55:09 -08002022
2023 // Cellular data network type currently in use on the device for data transmission
2024 optional CellularDataNetworkType cellular_data_network_type = 30;
2025
2026 // Cellular signal strength in dBm, NR: CsiRsrp, LTE: Rsrp, WCDMA/TDSCDMA: Rscp,
2027 // CDMA: Rssi, EVDO: Rssi, GSM: Rssi
2028 optional int32 cellular_signal_strength_dbm = 31;
2029
2030 // Cellular signal strength in dB, NR: CsiSinr, LTE: Rsrq, WCDMA: EcNo, TDSCDMA: invalid,
2031 // CDMA: Ecio, EVDO: SNR, GSM: invalid */
2032 optional int32 cellular_signal_strength_db = 32;
2033
2034 // Whether the primary registered cell of current entry is same as that of previous entry
2035 optional bool is_same_registered_cell = 33;
Mingguang Xu4225eae2019-03-27 11:13:58 -07002036
2037 // The device mobility state
2038 optional DeviceMobilityStatePnoScanStats.DeviceMobilityState
2039 device_mobility_state = 34;
xshua33726e2018-09-24 15:02:23 -07002040}
2041
2042message WifiUsabilityStats {
2043 enum Label {
2044 // Default label
2045 LABEL_UNKNOWN = 0;
2046
2047 // Wifi is usable
2048 LABEL_GOOD = 1;
2049
2050 // Wifi is unusable
2051 LABEL_BAD = 2;
2052 }
2053
Mingguang Xuf69fa672019-01-28 14:32:36 -08002054 enum UsabilityStatsTriggerType {
2055 // Default/Invalid event
2056 TYPE_UNKNOWN = 0;
2057
2058 // There is a data stall from tx failures
2059 TYPE_DATA_STALL_BAD_TX = 1;
2060
2061 // There is a data stall from rx failures
2062 TYPE_DATA_STALL_TX_WITHOUT_RX = 2;
2063
2064 // There is a data stall from both tx and rx failures
2065 TYPE_DATA_STALL_BOTH = 3;
2066
2067 // Firmware generated an alert
2068 TYPE_FIRMWARE_ALERT = 4;
Mingguang Xucd53d0b2019-03-15 15:42:07 -07002069
2070 // IP Manager lost reachability to network neighbors
2071 TYPE_IP_REACHABILITY_LOST = 5;
Mingguang Xuf69fa672019-01-28 14:32:36 -08002072 }
2073
xshua33726e2018-09-24 15:02:23 -07002074 // The current wifi usability state
2075 optional Label label = 1;
2076
2077 // The list of timestamped wifi usability stats
2078 repeated WifiUsabilityStatsEntry stats = 2;
Mingguang Xuf69fa672019-01-28 14:32:36 -08002079
2080 // What event triggered WifiUsabilityStats.
2081 optional UsabilityStatsTriggerType trigger_type = 3;
Mingguang Xu8424b292019-03-27 15:26:02 -07002082
2083 // Firmware alert code. Only valid when the stats was triggered by a firmware
2084 // alert, otherwise -1.
2085 optional int32 firmware_alert_code = 4 [default = -1];
David Su367bdff2018-12-13 13:39:11 -08002086}
2087
2088message DeviceMobilityStatePnoScanStats {
2089 // see WifiManager.DEVICE_MOBILITY_STATE_* constants
2090 enum DeviceMobilityState {
2091 // Unknown mobility
2092 UNKNOWN = 0;
2093
2094 // High movement
2095 HIGH_MVMT = 1;
2096
2097 // Low movement
2098 LOW_MVMT = 2;
2099
2100 // Stationary
2101 STATIONARY = 3;
2102 }
2103
2104 // The device mobility state
2105 optional DeviceMobilityState device_mobility_state = 1;
2106
2107 // The number of times that this state was entered
2108 optional int32 num_times_entered_state = 2;
2109
2110 // The total duration elapsed while in this mobility state, in ms
2111 optional int64 total_duration_ms = 3;
2112
2113 // the total duration elapsed while in this mobility state with PNO scans running, in ms
2114 optional int64 pno_duration_ms = 4;
2115}
Jimmy Chen0142e8b2018-11-23 16:25:57 +08002116
2117// The information about the Wifi P2p events.
2118message WifiP2pStats {
2119
2120 // Group event list tracking sessions and client counts in tethered mode.
2121 repeated GroupEvent group_event = 1;
2122
2123 // Session information that gets logged for every Wifi P2p connection.
2124 repeated P2pConnectionEvent connection_event = 2;
2125
2126 // Number of persistent group in the user profile.
2127 optional int32 num_persistent_group = 3;
2128
2129 // Number of peer scan.
2130 optional int32 num_total_peer_scans = 4;
2131
2132 // Number of service scan.
2133 optional int32 num_total_service_scans = 5;
2134}
2135
2136message P2pConnectionEvent {
2137
2138 enum ConnectionType {
2139
2140 // fresh new connection.
2141 CONNECTION_FRESH = 0;
2142
2143 // reinvoke a group.
2144 CONNECTION_REINVOKE = 1;
2145
2146 // create a group with the current device as the group owner locally.
2147 CONNECTION_LOCAL = 2;
2148
2149 // create a group or join a group with config.
2150 CONNECTION_FAST = 3;
2151 }
2152
2153 enum ConnectivityLevelFailure {
2154
2155 // Failure is unknown.
2156 CLF_UNKNOWN = 0;
2157
2158 // No failure.
2159 CLF_NONE = 1;
2160
2161 // Timeout for current connecting request.
2162 CLF_TIMEOUT = 2;
2163
2164 // The connecting request is canceled by the user.
2165 CLF_CANCEL = 3;
2166
2167 // Provision discovery failure, e.g. no pin code, timeout, rejected by the peer.
2168 CLF_PROV_DISC_FAIL = 4;
2169
2170 // Invitation failure, e.g. rejected by the peer.
2171 CLF_INVITATION_FAIL = 5;
2172
2173 // Incoming request is rejected by the user.
2174 CLF_USER_REJECT = 6;
2175
2176 // New connection request is issued before ending previous connecting request.
2177 CLF_NEW_CONNECTION_ATTEMPT = 7;
2178 }
2179
2180 // WPS method.
2181 enum WpsMethod {
2182 // WPS is skipped for Group Reinvoke.
2183 WPS_NA = -1;
2184
2185 // Push button configuration.
2186 WPS_PBC = 0;
2187
2188 // Display pin method configuration - pin is generated and displayed on device.
2189 WPS_DISPLAY = 1;
2190
2191 // Keypad pin method configuration - pin is entered on device.
2192 WPS_KEYPAD = 2;
2193
2194 // Label pin method configuration - pin is labelled on device.
2195 WPS_LABEL = 3;
2196 }
2197
2198 // Start time of the connection.
2199 optional int64 start_time_millis = 1;
2200
2201 // Type of the connection.
2202 optional ConnectionType connection_type = 2;
2203
2204 // WPS method.
2205 optional WpsMethod wps_method = 3 [default = WPS_NA];
2206
2207 // Duration to connect.
2208 optional int32 duration_taken_to_connect_millis = 4;
2209
2210 // Failures that happen at the connectivity layer.
2211 optional ConnectivityLevelFailure connectivity_level_failure_code = 5;
2212}
2213
2214// GroupEvent tracking group information from GroupStarted to GroupRemoved.
2215message GroupEvent {
2216
2217 enum GroupRole {
2218
2219 GROUP_OWNER = 0;
2220
2221 GROUP_CLIENT = 1;
2222 }
2223
2224 // The ID of network in supplicant for this group.
2225 optional int32 net_id = 1;
2226
2227 // Start time of the group.
2228 optional int64 start_time_millis = 2;
2229
2230 // Channel frequency used for Group.
2231 optional int32 channel_frequency = 3;
2232
2233 // Is group owner or group client.
2234 optional GroupRole group_role = 5;
2235
2236 // Number of connected clients.
2237 optional int32 num_connected_clients = 6;
2238
2239 // Cumulative number of connected clients.
2240 optional int32 num_cumulative_clients = 7;
2241
2242 // The session duration.
2243 optional int32 session_duration_millis = 8;
2244
2245 // The idle duration. A group without any client is in idle.
2246 optional int32 idle_duration_millis = 9;
2247}
Hai Shaloma18c32c2019-01-22 10:01:09 -08002248
2249// Easy Connect (DPP)
2250message WifiDppLog {
David Su8e835f62019-02-14 16:45:09 -08002251 reserved 6;
2252
Hai Shaloma18c32c2019-01-22 10:01:09 -08002253 // Number of Configurator-Initiator requests
2254 optional int32 num_dpp_configurator_initiator_requests = 1;
2255
2256 // Number of Enrollee-Initiator requests
2257 optional int32 num_dpp_enrollee_initiator_requests = 2;
2258
2259 // Easy Connect (DPP) Enrollee success
2260 optional int32 num_dpp_enrollee_success = 3;
2261
2262 // Easy Connect (DPP) Configurator success code bucket
2263 repeated DppConfiguratorSuccessStatusHistogramBucket dpp_configurator_success_code = 4;
2264
2265 // Easy Connect (DPP) failure code bucket
2266 repeated DppFailureStatusHistogramBucket dpp_failure_code = 5;
2267
2268 // Easy Connect (DPP) operation time bucket
David Su8e835f62019-02-14 16:45:09 -08002269 repeated HistogramBucketInt32 dpp_operation_time = 7;
Hai Shaloma18c32c2019-01-22 10:01:09 -08002270
2271 // Histogram bucket for Wi-Fi DPP configurator success
2272 message DppConfiguratorSuccessStatusHistogramBucket {
2273 // status type defining the bucket
2274 optional DppConfiguratorSuccessCode dpp_status_type = 1;
2275
2276 // number of samples in the bucket
2277 optional int32 count = 2;
2278 }
2279
2280 // Histogram bucket for Wi-Fi DPP failures
2281 message DppFailureStatusHistogramBucket {
2282 // status type defining the bucket
2283 optional DppFailureCode dpp_status_type = 1;
2284
2285 // number of samples in the bucket
2286 optional int32 count = 2;
2287 }
2288
Hai Shaloma18c32c2019-01-22 10:01:09 -08002289 enum DppConfiguratorSuccessCode {
2290 // Unknown success code
2291 EASY_CONNECT_EVENT_SUCCESS_UNKNOWN = 0;
2292
2293 // Easy Connect Configurator success event: Configuration sent to enrollee
2294 EASY_CONNECT_EVENT_SUCCESS_CONFIGURATION_SENT = 1;
2295 }
2296
2297 enum DppFailureCode {
2298 // Unknown failure
2299 EASY_CONNECT_EVENT_FAILURE_UNKNOWN = 0;
2300
2301 // Easy Connect Failure event: Scanned QR code is either not a Easy Connect URI, or the Easy
2302 // Connect URI has errors.
2303 EASY_CONNECT_EVENT_FAILURE_INVALID_URI = 1;
2304
2305 // Easy Connect Failure event: Bootstrapping/Authentication initialization process failure.
2306 EASY_CONNECT_EVENT_FAILURE_AUTHENTICATION = 2;
2307
2308 // Easy Connect Failure event: Both devices are implementing the same role and are
2309 // incompatible.
2310 EASY_CONNECT_EVENT_FAILURE_NOT_COMPATIBLE = 3;
2311
2312 // Easy Connect Failure event: Configuration process has failed due to malformed message.
2313 EASY_CONNECT_EVENT_FAILURE_CONFIGURATION = 4;
2314
2315 // Easy Connect Failure event: Easy Connect request while in another Easy Connect exchange.
2316 EASY_CONNECT_EVENT_FAILURE_BUSY = 5;
2317
2318 // Easy Connect Failure event: No response from the peer.
2319 EASY_CONNECT_EVENT_FAILURE_TIMEOUT = 6;
2320
2321 // Easy Connect Failure event: General protocol failure.
2322 EASY_CONNECT_EVENT_FAILURE_GENERIC = 7;
2323
2324 // Easy Connect Failure event: Feature or option is not supported.
2325 EASY_CONNECT_EVENT_FAILURE_NOT_SUPPORTED = 8;
2326
2327 // Easy Connect Failure event: Invalid network provided to Easy Connect configurator.
2328 // Network must either be WPA3-Personal (SAE) or WPA2-Personal (PSK).
2329 EASY_CONNECT_EVENT_FAILURE_INVALID_NETWORK = 9;
2330 }
2331}
Roshan Pius89b233d2019-01-31 10:15:22 -08002332
2333// WifiConfigStore read/write metrics.
2334message WifiConfigStoreIO {
2335 // Histogram of config store read durations.
2336 repeated DurationBucket read_durations = 1;
2337
2338 // Histogram of config store write durations.
2339 repeated DurationBucket write_durations = 2;
2340
2341 // Total Number of instances of write/read duration in this duration bucket.
2342 message DurationBucket {
2343 // Bucket covers duration : [range_start_ms, range_end_ms)
2344 // The (inclusive) lower bound of read/write duration represented by this bucket
2345 optional int32 range_start_ms = 1;
2346
2347 // The (exclusive) upper bound of read/write duration represented by this bucket
2348 optional int32 range_end_ms = 2;
2349
2350 // Number of read/write durations that fit into this bucket
2351 optional int32 count = 3;
2352 }
2353}
David Su44306932019-02-12 16:53:46 -08002354
2355// Histogram bucket counting with int32. Range is [start, end)
2356message HistogramBucketInt32 {
2357 // lower range of the bucket (inclusive)
2358 optional int32 start = 1;
2359
2360 // upper range of the bucket (exclusive)
2361 optional int32 end = 2;
2362
2363 // number of samples in the bucket
2364 optional int32 count = 3;
2365}
2366
David Suf6e4d4e2019-03-08 13:18:21 -08002367// Counts occurrences of a int32 key
2368message Int32Count {
David Su44306932019-02-12 16:53:46 -08002369 // the key
2370 optional int32 key = 1;
2371
David Suf6e4d4e2019-03-08 13:18:21 -08002372 // the count
2373 optional int32 count = 2;
David Su44306932019-02-12 16:53:46 -08002374}
2375
2376message LinkProbeStats {
2377 enum LinkProbeFailureReason {
2378 // unknown reason
2379 LINK_PROBE_FAILURE_REASON_UNKNOWN = 0;
2380
2381 // Specified MCS rate when it is unsupported by the driver.
2382 LINK_PROBE_FAILURE_REASON_MCS_UNSUPPORTED = 1;
2383
2384 // Driver reported that no ACK was received for the transmitted probe.
2385 LINK_PROBE_FAILURE_REASON_NO_ACK = 2;
2386
2387 // Driver failed to report on the status of the transmitted probe within the timeout.
2388 LINK_PROBE_FAILURE_REASON_TIMEOUT = 3;
2389
2390 // An existing link probe is in progress.
2391 LINK_PROBE_FAILURE_REASON_ALREADY_STARTED = 4;
2392 }
2393
2394 // Counts the number of failures for each failure reason.
2395 message LinkProbeFailureReasonCount {
2396 // The failure reason.
2397 optional LinkProbeFailureReason failure_reason = 1;
2398
2399 // The number of occurrences for this failure reason.
2400 optional int32 count = 2;
2401 }
2402
2403 // Counts the occurrences of RSSI values when a link probe succeeds.
David Suf6e4d4e2019-03-08 13:18:21 -08002404 repeated Int32Count success_rssi_counts = 1;
David Su44306932019-02-12 16:53:46 -08002405
2406 // Counts the occurrences of RSSI values when a link probe fails.
David Suf6e4d4e2019-03-08 13:18:21 -08002407 repeated Int32Count failure_rssi_counts = 2;
David Su44306932019-02-12 16:53:46 -08002408
2409 // Counts the occurrences of Link Speed values when a link probe succeeds.
David Suf6e4d4e2019-03-08 13:18:21 -08002410 repeated Int32Count success_link_speed_counts = 3;
David Su44306932019-02-12 16:53:46 -08002411
2412 // Counts the occurrences of Link Speed values when a link probe fails.
David Suf6e4d4e2019-03-08 13:18:21 -08002413 repeated Int32Count failure_link_speed_counts = 4;
David Su44306932019-02-12 16:53:46 -08002414
2415 // Histogram for the number of seconds since the last TX success when a link probe succeeds.
2416 repeated HistogramBucketInt32 success_seconds_since_last_tx_success_histogram = 5;
2417
2418 // Histogram for the number of seconds since the last TX success when a link probe fails.
2419 repeated HistogramBucketInt32 failure_seconds_since_last_tx_success_histogram = 6;
2420
2421 // Histogram for the elapsed time of successful link probes, in ms.
2422 repeated HistogramBucketInt32 success_elapsed_time_ms_histogram = 7;
2423
2424 // Counts the occurrences of error codes for failed link probes.
2425 repeated LinkProbeFailureReasonCount failure_reason_counts = 8;
2426}
David Sua04f5052019-02-20 17:42:28 -08002427
2428// Stores the decisions that were made by a experiment when compared against another experiment
2429message NetworkSelectionExperimentDecisions {
2430 // the id of one experiment
2431 optional int32 experiment1_id = 1;
2432
2433 // the id of the other experiment
2434 optional int32 experiment2_id = 2;
2435
2436 // Counts occurrences of the number of network choices there were when experiment1 makes the
2437 // same network selection as experiment2.
2438 // The keys are the number of network choices, and the values are the number of occurrences of
2439 // this number of network choices when exp1 and exp2 make the same network selection.
David Suf6e4d4e2019-03-08 13:18:21 -08002440 repeated Int32Count same_selection_num_choices_counter = 3;
David Sua04f5052019-02-20 17:42:28 -08002441
2442 // Counts occurrences of the number of network choices there were when experiment1 makes the
2443 // same network selection as experiment2.
2444 // The keys are the number of network choices, and the values are the number of occurrences of
2445 // this number of network choices when exp1 and exp2 make different network selections.
2446 // Note that it is possible for the network selection to be different even when there only exists
2447 // a single network choice, since choosing not to connect to that network is a valid choice.
David Suf6e4d4e2019-03-08 13:18:21 -08002448 repeated Int32Count different_selection_num_choices_counter = 4;
David Sua04f5052019-02-20 17:42:28 -08002449}
Roshan Pius3f30ba82019-02-08 11:55:55 -08002450
2451// NetworkRequest API metrics.
2452message WifiNetworkRequestApiLog {
2453 // Number of requests via this API surface.
2454 optional int32 num_request = 1;
2455
2456 // Histogram of requests via this API surface to number of networks matched in scan results.
Roshan Piusbebb5ab2019-02-28 11:04:00 -08002457 repeated HistogramBucketInt32 network_match_size_histogram = 2;
Roshan Pius3f30ba82019-02-08 11:55:55 -08002458
2459 // Number of successful network connection from this API.
2460 optional int32 num_connect_success = 3;
2461
2462 // Number of requests via this API surface that bypassed user approval.
2463 optional int32 num_user_approval_bypass = 4;
2464
2465 // Number of requests via this API surface that was rejected by the user.
2466 optional int32 num_user_reject = 5;
2467
2468 // Number of unique apps using this API surface.
2469 optional int32 num_apps = 6;
2470}
2471
2472// NetworkSuggestion API metrics.
2473message WifiNetworkSuggestionApiLog {
2474 // Number of modifications to their suggestions by apps.
2475 optional int32 num_modification = 1;
2476
2477 // Number of successful network connection from app suggestions.
2478 optional int32 num_connect_success = 2;
2479
2480 // Number of network connection failures from app suggestions.
2481 optional int32 num_connect_failure = 3;
2482
2483 // Histogram for size of the network lists provided by various apps on the device.
2484 repeated HistogramBucketInt32 network_list_size_histogram = 4;
2485}
Ahmed ElArabawy048e1482019-03-25 10:42:04 -07002486
2487// WifiLock metrics
2488message WifiLockStats {
2489 // Amount of time wifi is actively in HIGH_PERF mode (ms)
2490 // This means the lock takes effect and the device takes the actions required for this mode
2491 optional int64 high_perf_active_time_ms = 1;
2492
2493 // Amount of time wifi is actively in LOW_LATENCY mode (ms)
2494 // This means the lock takes effect and the device takes the actions required for this mode
2495 optional int64 low_latency_active_time_ms = 2;
2496
2497 // Histogram of HIGH_PERF lock acquisition duration (seconds)
2498 // Note that acquiring the lock does not necessarily mean that device is actively in that mode
2499 repeated HistogramBucketInt32 high_perf_lock_acq_duration_sec_histogram = 3;
2500
2501 // Histogram of LOW_LATENCY lock acquisition duration (seconds)
2502 // Note that acquiring the lock does not necessarily mean that device is actively in that mode
2503 repeated HistogramBucketInt32 low_latency_lock_acq_duration_sec_histogram = 4;
2504
2505 // Histogram of HIGH_PERF active session duration (seconds)
2506 // This means the lock takes effect and the device takes the actions required for this mode
2507 repeated HistogramBucketInt32 high_perf_active_session_duration_sec_histogram = 5;
2508
2509 // Histogram of LOW_LATENCY active session duration (seconds)
2510 // This means the lock takes effect and the device takes the actions required for this mode
2511 repeated HistogramBucketInt32 low_latency_active_session_duration_sec_histogram = 6;
2512}