blob: cdec95cf1135dc9f64e35dc2a2cb46188ed02f5e [file] [log] [blame]
Glen Kuhne94814572016-10-25 12:40:35 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17syntax = "proto2";
18
19package clearcut.connectivity;
20
21option java_package = "com.android.server.wifi";
22option java_outer_classname = "WifiMetricsProto";
23
24// The information about the Wifi events.
25message WifiLog {
26
27 // Session information that gets logged for every Wifi connection.
28 repeated ConnectionEvent connection_event = 1;
29
30 // Number of saved networks in the user profile.
31 optional int32 num_saved_networks = 2;
32
33 // Number of open networks in the saved networks.
34 optional int32 num_open_networks = 3;
35
36 // Number of personal networks.
37 optional int32 num_personal_networks = 4;
38
39 // Number of enterprise networks.
40 optional int32 num_enterprise_networks = 5;
41
42 // Does the user have location setting enabled.
43 optional bool is_location_enabled = 6;
44
45 // Does the user have scanning enabled.
46 optional bool is_scanning_always_enabled = 7;
47
48 // Number of times user toggled wifi using the settings menu.
49 optional int32 num_wifi_toggled_via_settings = 8;
50
51 // Number of times user toggled wifi using the airplane menu.
52 optional int32 num_wifi_toggled_via_airplane = 9;
53
54 // Number of networks added by the user.
55 optional int32 num_networks_added_by_user = 10;
56
57 // Number of networks added by applications.
58 optional int32 num_networks_added_by_apps = 11;
59
60 // Number scans that returned empty results.
61 optional int32 num_empty_scan_results = 12;
62
63 // Number scans that returned at least one result.
64 optional int32 num_non_empty_scan_results = 13;
65
Ningyuan Wang72886332017-12-20 16:17:33 -080066 // Number of single scans requests.
Glen Kuhne94814572016-10-25 12:40:35 -070067 optional int32 num_oneshot_scans = 14;
68
69 // Number of repeated background scans that were scheduled to the chip.
70 optional int32 num_background_scans = 15;
71
72 // Error codes that a scan can result in.
73 enum ScanReturnCode {
74
75 // Return Code is unknown.
76 SCAN_UNKNOWN = 0;
77
78 // Scan was successful.
79 SCAN_SUCCESS = 1;
80
81 // Scan was successfully started, but was interrupted.
82 SCAN_FAILURE_INTERRUPTED = 2;
83
84 // Scan failed to start because of invalid configuration
85 // (bad channel, etc).
86 SCAN_FAILURE_INVALID_CONFIGURATION = 3;
87
88 // Could not start a scan because wifi is disabled.
89 FAILURE_WIFI_DISABLED = 4;
90
91 }
92
93 // Mapping of error codes to the number of times that scans resulted
94 // in that error.
95 repeated ScanReturnEntry scan_return_entries = 16;
96
97 message ScanReturnEntry {
98
99 // Return code of the scan.
100 optional ScanReturnCode scan_return_code = 1;
101
102 // Number of entries that were found in the scan.
103 optional int32 scan_results_count = 2;
104 }
105
106 // State of the Wifi.
107 enum WifiState {
108
109 // State is unknown.
110 WIFI_UNKNOWN = 0;
111
112 // Wifi is disabled.
113 WIFI_DISABLED = 1;
114
115 // Wifi is enabled.
116 WIFI_DISCONNECTED = 2;
117
118 // Wifi is enabled and associated with an AP.
119 WIFI_ASSOCIATED = 3;
120 }
121
122 // Mapping of system state to the number of times that scans were requested in
123 // that state
124 repeated WifiSystemStateEntry wifi_system_state_entries = 17;
125
126 message WifiSystemStateEntry {
127
128 // Current WiFi state.
129 optional WifiState wifi_state = 1;
130
131 // Count of scans in state.
132 optional int32 wifi_state_count = 2;
133
134 // Is screen on.
135 optional bool is_screen_on = 3;
136 }
137
138 // Mapping of Error/Success codes to the number of background scans that resulted in it
139 repeated ScanReturnEntry background_scan_return_entries = 18;
140
141 // Mapping of system state to the number of times that Background scans were requested in that
142 // state
143 repeated WifiSystemStateEntry background_scan_request_state = 19;
144
145 // Total number of times the Watchdog of Last Resort triggered, resetting the wifi stack
146 optional int32 num_last_resort_watchdog_triggers = 20;
147
148 // Total number of networks over bad association threshold when watchdog triggered
149 optional int32 num_last_resort_watchdog_bad_association_networks_total = 21;
150
151 // Total number of networks over bad authentication threshold when watchdog triggered
152 optional int32 num_last_resort_watchdog_bad_authentication_networks_total = 22;
153
154 // Total number of networks over bad dhcp threshold when watchdog triggered
155 optional int32 num_last_resort_watchdog_bad_dhcp_networks_total = 23;
156
157 // Total number of networks over bad other threshold when watchdog triggered
158 optional int32 num_last_resort_watchdog_bad_other_networks_total = 24;
159
160 // Total count of networks seen when watchdog triggered
161 optional int32 num_last_resort_watchdog_available_networks_total = 25;
162
163 // Total count of triggers with atleast one bad association network
164 optional int32 num_last_resort_watchdog_triggers_with_bad_association = 26;
165
166 // Total count of triggers with atleast one bad authentication network
167 optional int32 num_last_resort_watchdog_triggers_with_bad_authentication = 27;
168
169 // Total count of triggers with atleast one bad dhcp network
170 optional int32 num_last_resort_watchdog_triggers_with_bad_dhcp = 28;
171
172 // Total count of triggers with atleast one bad other network
173 optional int32 num_last_resort_watchdog_triggers_with_bad_other = 29;
174
175 // Count of times connectivity watchdog confirmed pno is working
176 optional int32 num_connectivity_watchdog_pno_good = 30;
177
178 // Count of times connectivity watchdog found pno not working
179 optional int32 num_connectivity_watchdog_pno_bad = 31;
180
181 // Count of times connectivity watchdog confirmed background scan is working
182 optional int32 num_connectivity_watchdog_background_good = 32;
183
184 // Count of times connectivity watchdog found background scan not working
185 optional int32 num_connectivity_watchdog_background_bad = 33;
186
187 // The time duration represented by this wifi log, from start to end of capture
188 optional int32 record_duration_sec = 34;
189
190 // Counts the occurrences of each individual RSSI poll level
191 repeated RssiPollCount rssi_poll_rssi_count = 35;
192
193 // Total number of times WiFi connected immediately after a Last Resort Watchdog trigger,
194 // without new networks becoming available.
195 optional int32 num_last_resort_watchdog_successes = 36;
196
197 // Total number of saved hidden networks
198 optional int32 num_hidden_networks = 37;
199
200 // Total number of saved passpoint / hotspot 2.0 networks
201 optional int32 num_passpoint_networks = 38;
202
203 // Total number of scan results
204 optional int32 num_total_scan_results = 39;
205
206 // Total number of scan results for open networks
207 optional int32 num_open_network_scan_results = 40;
208
209 // Total number of scan results for personal networks
210 optional int32 num_personal_network_scan_results = 41;
211
212 // Total number of scan results for enterprise networks
213 optional int32 num_enterprise_network_scan_results = 42;
214
215 // Total number of scan results for hidden networks
216 optional int32 num_hidden_network_scan_results = 43;
217
218 // Total number of scan results for hotspot 2.0 r1 networks
219 optional int32 num_hotspot2_r1_network_scan_results = 44;
220
221 // Total number of scan results for hotspot 2.0 r2 networks
222 optional int32 num_hotspot2_r2_network_scan_results = 45;
223
224 // Total number of scans handled by framework (oneshot or otherwise)
225 optional int32 num_scans = 46;
226
227 // Counts the occurrences of each alert reason.
228 repeated AlertReasonCount alert_reason_count = 47;
229
230 // Counts the occurrences of each Wifi score
231 repeated WifiScoreCount wifi_score_count = 48;
232
233 // Histogram of Soft AP Durations
234 repeated SoftApDurationBucket soft_ap_duration = 49;
235
236 // Histogram of Soft AP ReturnCode
237 repeated SoftApReturnCodeCount soft_ap_return_code = 50;
238
239 // Histogram of the delta between scan result RSSI and RSSI polls
240 repeated RssiPollCount rssi_poll_delta_count = 51;
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700241
242 // List of events
243 repeated StaEvent sta_event_list = 52;
Roshan Pius3607a392017-05-11 09:05:58 -0700244
245 // Total number of times WiFi HAL crashed.
246 optional int32 num_hal_crashes = 53;
247
248 // Total number of times WiFicond crashed.
249 optional int32 num_wificond_crashes = 54;
250
251 // Indicates the number of times an error was encountered in
Roshan Piusa66e6382018-03-14 16:10:16 -0700252 // Wifi HAL on |WifiNative.setupInterfaceForClientMode|.
253 optional int32 num_setup_client_interface_failure_due_to_hal = 55;
Roshan Pius3607a392017-05-11 09:05:58 -0700254
255 // Indicates the number of times an error was encountered in
Roshan Piusa66e6382018-03-14 16:10:16 -0700256 // Wificond on |WifiNative.setupInterfaceForClientMode|.
257 optional int32 num_setup_client_interface_failure_due_to_wificond = 56;
Etan Cohen737addc2017-04-26 08:01:57 -0700258
259 // Wi-Fi Aware metrics
260 optional WifiAwareLog wifi_aware_log = 57;
Peter Qiu84243152017-06-22 13:44:04 -0700261
262 // Number of saved Passpoint providers in user profile.
263 optional int32 num_passpoint_providers = 58;
264
265 // Count of times Passpoint provider being installed.
266 optional int32 num_passpoint_provider_installation = 59;
267
268 // Count of times Passpoint provivider is installed successfully.
269 optional int32 num_passpoint_provider_install_success = 60;
270
271 // Count of times Passpoint provider is being uninstalled.
272 optional int32 num_passpoint_provider_uninstallation = 61;
273
274 // Count of times Passpoint provider is uninstalled successfully.
275 optional int32 num_passpoint_provider_uninstall_success = 62;
276
277 // Count of saved Passpoint providers device has ever connected to.
278 optional int32 num_passpoint_providers_successfully_connected = 63;
Glen Kuhnee2d67c02017-04-25 13:08:29 -0700279
280 // Histogram counting instances of scans with N many ScanResults with unique ssids
281 repeated NumConnectableNetworksBucket total_ssids_in_scan_histogram = 64;
282
283 // Histogram counting instances of scans with N many ScanResults/bssids
284 repeated NumConnectableNetworksBucket total_bssids_in_scan_histogram = 65;
285
286 // Histogram counting instances of scans with N many unique open ssids
287 repeated NumConnectableNetworksBucket available_open_ssids_in_scan_histogram = 66;
288
289 // Histogram counting instances of scans with N many bssids for open networks
290 repeated NumConnectableNetworksBucket available_open_bssids_in_scan_histogram = 67;
291
292 // Histogram counting instances of scans with N many unique ssids for saved networks
293 repeated NumConnectableNetworksBucket available_saved_ssids_in_scan_histogram = 68;
294
295 // Histogram counting instances of scans with N many bssids for saved networks
296 repeated NumConnectableNetworksBucket available_saved_bssids_in_scan_histogram = 69;
297
298 // Histogram counting instances of scans with N many unique SSIDs for open or saved networks
299 repeated NumConnectableNetworksBucket available_open_or_saved_ssids_in_scan_histogram = 70;
300
301 // Histogram counting instances of scans with N many BSSIDs for open or saved networks
302 repeated NumConnectableNetworksBucket available_open_or_saved_bssids_in_scan_histogram = 71;
303
304 // Histogram counting instances of scans with N many ScanResults matching unique saved passpoint providers
305 repeated NumConnectableNetworksBucket available_saved_passpoint_provider_profiles_in_scan_histogram = 72;
306
307 // Histogram counting instances of scans with N many ScanResults BSSIDs matching a saved passpoint provider
308 repeated NumConnectableNetworksBucket available_saved_passpoint_provider_bssids_in_scan_histogram = 73;
309
310 // Counts the number of AllSingleScanLister.onResult calls with a full band scan result
311 optional int32 full_band_all_single_scan_listener_results = 74;
312
313 // Counts the number of AllSingleScanLister.onResult calls with a partial (channels) scan result
314 optional int32 partial_all_single_scan_listener_results = 75;
Mehdi Alizadehd9163cf2017-08-10 18:20:25 -0700315
316 // Pno scan metrics
317 optional PnoScanMetrics pno_scan_metrics = 76;
Stephen Chenfc0facb2017-09-14 14:35:15 -0700318
319 // Histogram of "Connect to Network" notifications.
320 // The notification Action should be unset.
321 repeated ConnectToNetworkNotificationAndActionCount connect_to_network_notification_count = 77;
322
323 // Histogram of "Connect to Network" notification user actions.
324 repeated ConnectToNetworkNotificationAndActionCount connect_to_network_notification_action_count = 78;
325
326 // The number of SSIDs blacklisted from recommendation by the open network
327 // notification recommender
328 optional int32 open_network_recommender_blacklist_size = 79;
329
330 // Is the available network notification feature turned on
331 optional bool is_wifi_networks_available_notification_on = 80;
332
333 // Count of recommendation updates made by the open network notification
334 // recommender
335 optional int32 num_open_network_recommendation_updates = 81;
336
337 // Count of connection attempts that were initiated unsuccessfully
338 optional int32 num_open_network_connect_message_failed_to_send = 82;
Etan Cohenc462a7a2017-10-09 10:27:44 -0700339
340 // Histogram counting instances of scans with N many HotSpot 2.0 R1 APs
341 repeated NumConnectableNetworksBucket observed_hotspot_r1_aps_in_scan_histogram = 83;
342
343 // Histogram counting instances of scans with N many HotSpot 2.0 R2 APs
344 repeated NumConnectableNetworksBucket observed_hotspot_r2_aps_in_scan_histogram = 84;
345
346 // Histogram counting instances of scans with N many unique HotSpot 2.0 R1 ESS.
347 // Where ESS is defined as the (HESSID, ANQP Domain ID), (SSID, ANQP Domain ID) or
348 // (SSID, BSSID) tuple depending on AP configuration (in the above priority
349 // order).
350 repeated NumConnectableNetworksBucket observed_hotspot_r1_ess_in_scan_histogram = 85;
351
352 // Histogram counting instances of scans with N many unique HotSpot 2.0 R2 ESS.
353 // Where ESS is defined as the (HESSID, ANQP Domain ID), (SSID, ANQP Domain ID) or
354 // (SSID, BSSID) tuple depending on AP configuration (in the above priority
355 // order).
356 repeated NumConnectableNetworksBucket observed_hotspot_r2_ess_in_scan_histogram = 86;
357
358 // Histogram counting number of HotSpot 2.0 R1 APs per observed ESS in a scan
359 // (one value added per unique ESS - potentially multiple counts per single
360 // scan!)
361 repeated NumConnectableNetworksBucket observed_hotspot_r1_aps_per_ess_in_scan_histogram = 87;
362
363 // Histogram counting number of HotSpot 2.0 R2 APs per observed ESS in a scan
364 // (one value added per unique ESS - potentially multiple counts per single
365 // scan!)
366 repeated NumConnectableNetworksBucket observed_hotspot_r2_aps_per_ess_in_scan_histogram = 88;
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -0700367
368 // SoftAP event list tracking sessions and client counts in tethered mode
369 repeated SoftApConnectedClientsEvent soft_ap_connected_clients_events_tethered = 89;
370
371 // SoftAP event list tracking sessions and client counts in local only mode
372 repeated SoftApConnectedClientsEvent soft_ap_connected_clients_events_local_only = 90;
Jong Wook Kim72c49ee2017-10-26 13:16:36 -0700373
374 // Wps connection metrics
375 optional WpsMetrics wps_metrics = 91;
Siddharth Rayac8b69a2018-01-27 18:05:44 -0800376
377 // Wifi power statistics
378 optional WifiPowerStats wifi_power_stats = 92;
Ningyuan Wang72886332017-12-20 16:17:33 -0800379
380 // Number of connectivity single scan requests.
381 optional int32 num_connectivity_oneshot_scans = 93;
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -0800382
383 // WifiWake statistics
384 optional WifiWakeStats wifi_wake_stats = 94;
Etan Cohenf30125b2018-03-24 16:51:41 -0700385
386 // Histogram counting instances of scans with N many 802.11mc (RTT) supporting APs
387 repeated NumConnectableNetworksBucket observed_80211mc_supporting_aps_in_scan_histogram = 95;
Roshan Piusa66e6382018-03-14 16:10:16 -0700388
389 // Total number of times supplicant crashed.
390 optional int32 num_supplicant_crashes = 96;
391
392 // Total number of times hostapd crashed.
393 optional int32 num_hostapd_crashes = 97;
394
395 // Indicates the number of times an error was encountered in
396 // supplicant on |WifiNative.setupInterfaceForClientMode|.
397 optional int32 num_setup_client_interface_failure_due_to_supplicant = 98;
398
399 // Indicates the number of times an error was encountered in
400 // Wifi HAL on |WifiNative.setupInterfaceForSoftApMode|.
401 optional int32 num_setup_soft_ap_interface_failure_due_to_hal = 99;
402
403 // Indicates the number of times an error was encountered in
404 // Wifi HAL on |WifiNative.setupInterfaceForSoftApMode|.
405 optional int32 num_setup_soft_ap_interface_failure_due_to_wificond = 100;
406
407 // Indicates the number of times an error was encountered in
408 // Wifi HAL on |WifiNative.setupInterfaceForSoftApMode|.
409 optional int32 num_setup_soft_ap_interface_failure_due_to_hostapd = 101;
410
411 // Indicates the number of times we got an interface down in client mode.
412 optional int32 num_client_interface_down = 102;
413
414 // Indicates the number of times we got an interface down in softap mode.
415 optional int32 num_soft_ap_interface_down = 103;
Roshan Pius48f65632018-03-27 14:33:01 -0700416
417 // Indicates the number of scan requests from external apps.
418 optional int32 num_external_app_oneshot_scan_requests = 104;
419
420 // Indicates the number of times a scan request from an external foreground app was throttled.
421 optional int32 num_external_foreground_app_oneshot_scan_requests_throttled = 105;
422
423 // Indicates the number of times a scan request from an external background app was throttled.
424 optional int32 num_external_background_app_oneshot_scan_requests_throttled = 106;
xshu63522622018-03-15 16:48:29 -0700425
426 // WifiLastResortWatchdog time milliseconds delta between trigger and first connection success
427 optional int64 watchdog_trigger_to_connection_success_duration_ms = 107 [default = -1];
428
429 // The number of times wifi experienced failures after watchdog has already been triggered and is
430 // waiting for a connection success
431 optional int64 watchdog_total_connection_failure_count_after_trigger = 108;
xshu39cef4d2018-03-23 15:14:02 -0700432
433 // Number of times DFS channel scans are requested in single scan requests.
434 optional int32 num_oneshot_has_dfs_channel_scans = 109;
Etan Cohen4ec8dd32018-03-16 09:43:01 -0700435
436 // Wi-Fi RTT metrics
437 optional WifiRttLog wifi_rtt_log = 110;
Jong Wook Kim01ad38b2018-04-09 10:14:11 -0700438
439 // Flag which indicates if Connected MAC Randomization is enabled
440 optional bool is_mac_randomization_on = 111 [default = false];
Roshan Pius6de7a672018-04-24 16:30:13 -0700441
442 // Number of radio mode changes to MCC (Multi channel concurrency).
443 optional int32 num_radio_mode_change_to_mcc = 112;
444
445 // Number of radio mode changes to SCC (Single channel concurrency).
446 optional int32 num_radio_mode_change_to_scc = 113;
447
448 // Number of radio mode changes to SBS (Single band simultaneous).
449 optional int32 num_radio_mode_change_to_sbs = 114;
450
451 // Number of radio mode changes to DBS (Dual band simultaneous).
452 optional int32 num_radio_mode_change_to_dbs = 115;
Roshan Piusd3a58cb2018-05-14 15:53:44 -0700453
454 // Number of times the firmware picked a SoftAp channel not satisfying user band preference.
455 optional int32 num_soft_ap_user_band_preference_unsatisfied = 116;
Michael Plass8a779ac2018-05-09 16:56:52 -0700456
457 // Identifier for experimental scoring parameter settings.
458 optional string score_experiment_id = 117;
459
xshub483b722018-05-22 15:46:26 -0700460 // Data on wifi radio usage
461 optional WifiRadioUsage wifi_radio_usage = 118;
Jong Wook Kim411cab92018-04-26 15:09:23 -0700462
463 // Stores settings values used for metrics testing.
464 optional ExperimentValues experiment_values = 119;
465
466 // List of WifiIsUnusableEvents which get logged when we notice that WiFi is unusable.
467 // Collected only when WIFI_IS_UNUSABLE_EVENT_METRICS_ENABLED Settings is enabled.
468 repeated WifiIsUnusableEvent wifi_is_unusable_event_list = 120;
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;
Glen Kuhne94814572016-10-25 12:40:35 -0700497}
498
499// Information that gets logged for every WiFi connection.
500message RouterFingerPrint {
501
502 enum RoamType {
503
504 // Type is unknown.
505 ROAM_TYPE_UNKNOWN = 0;
506
507 // No roaming - usually happens on a single band (2.4 GHz) router.
508 ROAM_TYPE_NONE = 1;
509
510 // Enterprise router.
511 ROAM_TYPE_ENTERPRISE = 2;
512
513 // DBDC => Dual Band Dual Concurrent essentially a router that
514 // supports both 2.4 GHz and 5 GHz bands.
515 ROAM_TYPE_DBDC = 3;
516 }
517
518 enum Auth {
519
520 // Auth is unknown.
521 AUTH_UNKNOWN = 0;
522
523 // No authentication.
524 AUTH_OPEN = 1;
525
526 // If the router uses a personal authentication.
527 AUTH_PERSONAL = 2;
528
529 // If the router is setup for enterprise authentication.
530 AUTH_ENTERPRISE = 3;
531 }
532
533 enum RouterTechnology {
534
535 // Router is unknown.
536 ROUTER_TECH_UNKNOWN = 0;
537
538 // Router Channel A.
539 ROUTER_TECH_A = 1;
540
541 // Router Channel B.
542 ROUTER_TECH_B = 2;
543
544 // Router Channel G.
545 ROUTER_TECH_G = 3;
546
547 // Router Channel N.
548 ROUTER_TECH_N = 4;
549
550 // Router Channel AC.
551 ROUTER_TECH_AC = 5;
552
553 // When the channel is not one of the above.
554 ROUTER_TECH_OTHER = 6;
555 }
556
557 optional RoamType roam_type = 1;
558
559 // Channel on which the connection takes place.
560 optional int32 channel_info = 2;
561
562 // DTIM setting of the router.
563 optional int32 dtim = 3;
564
565 // Authentication scheme of the router.
566 optional Auth authentication = 4;
567
568 // If the router is hidden.
569 optional bool hidden = 5;
570
571 // Channel information.
572 optional RouterTechnology router_technology = 6;
573
574 // whether ipv6 is supported.
575 optional bool supports_ipv6 = 7;
576
577 // If the router is a passpoint / hotspot 2.0 network
578 optional bool passpoint = 8;
579}
580
581message ConnectionEvent {
582
583 // Roam Type.
584 enum RoamType {
585
586 // Type is unknown.
587 ROAM_UNKNOWN = 0;
588
589 // No roaming.
590 ROAM_NONE = 1;
591
592 // DBDC roaming.
593 ROAM_DBDC = 2;
594
595 // Enterprise roaming.
596 ROAM_ENTERPRISE = 3;
597
598 // User selected roaming.
599 ROAM_USER_SELECTED = 4;
600
601 // Unrelated.
602 ROAM_UNRELATED = 5;
603 }
604
605 // Connectivity Level Failure.
606 enum ConnectivityLevelFailure {
607
608 // Failure is unknown.
609 HLF_UNKNOWN = 0;
610
611 // No failure.
612 HLF_NONE = 1;
613
614 // DHCP failure.
615 HLF_DHCP = 2;
616
617 // No internet connection.
618 HLF_NO_INTERNET = 3;
619
620 // No internet connection.
621 HLF_UNWANTED = 4;
622 }
623
624 // Start time of the connection.
625 optional int64 start_time_millis = 1;// [(datapol.semantic_type) = ST_TIMESTAMP];
626
627 // Duration to connect.
628 optional int32 duration_taken_to_connect_millis = 2;
629
630 // Router information.
631 optional RouterFingerPrint router_fingerprint = 3;
632
633 // RSSI at the start of the connection.
634 optional int32 signal_strength = 4;
635
636 // Roam Type.
637 optional RoamType roam_type = 5;
638
639 // Result of the connection.
640 optional int32 connection_result = 6;
641
642 // Reasons for level 2 failure (needs to be coordinated with wpa-supplicant).
643 optional int32 level_2_failure_code = 7;
644
645 // Failures that happen at the connectivity layer.
646 optional ConnectivityLevelFailure connectivity_level_failure_code = 8;
647
648 // Has bug report been taken.
649 optional bool automatic_bug_report_taken = 9;
650}
651
652// Number of occurrences of a specific RSSI poll rssi value
653message RssiPollCount {
654 // RSSI
655 optional int32 rssi = 1;
656
657 // Number of RSSI polls with 'rssi'
658 optional int32 count = 2;
xshu122886e2018-05-16 15:38:49 -0700659
660 // Beacon frequency of the channel in MHz
661 optional int32 frequency = 3;
Glen Kuhne94814572016-10-25 12:40:35 -0700662}
663
664// Number of occurrences of a specific alert reason value
665message AlertReasonCount {
666 // Alert reason
667 optional int32 reason = 1;
668
669 // Number of alerts with |reason|.
670 optional int32 count = 2;
671}
672
673// Counts the number of instances of a specific Wifi Score calculated by WifiScoreReport
674message WifiScoreCount {
675 // Wifi Score
676 optional int32 score = 1;
677
678 // Number of Wifi score reports with this score
679 optional int32 count = 2;
680}
681
Mingguang Xuca2aab12019-01-12 23:40:42 -0800682// Counts the number of instances of a specific Wifi Usability Score
683message WifiUsabilityScoreCount {
684 // Wifi Usability Score
685 optional int32 score = 1;
686
687 // Number of Wifi score reports with this score
688 optional int32 count = 2;
689}
690
Jong Wook Kime4aa37f2018-04-23 11:18:24 -0700691// Number of occurrences of a specific link speed (Mbps)
692// and sum of rssi (dBm) and rssi^2 (dBm^2)
693message LinkSpeedCount {
694 // Link speed (Mbps)
695 optional int32 link_speed_mbps = 1;
696
697 // Number of RSSI polls with link_speed
698 optional int32 count = 2;
699
700 // Sum of absolute values of rssi values (dBm)
701 optional int32 rssi_sum_dbm = 3;
702
703 // Sum of squares of rssi values (dBm^2)
704 optional int64 rssi_sum_of_squares_dbm_sq = 4;
705}
706
Glen Kuhne94814572016-10-25 12:40:35 -0700707// Number of occurrences of Soft AP session durations
708message SoftApDurationBucket {
709 // Bucket covers duration : [duration_sec, duration_sec + bucket_size_sec)
710 // The (inclusive) lower bound of Soft AP session duration represented by this bucket
711 optional int32 duration_sec = 1;
712
713 // The size of this bucket
714 optional int32 bucket_size_sec = 2;
715
716 // Number of soft AP session durations that fit into this bucket
717 optional int32 count = 3;
718}
719
720// Number of occurrences of a soft AP session return code
721message SoftApReturnCodeCount {
Rebecca Silberstein28d9de22017-01-24 10:42:59 -0800722
723 enum SoftApStartResult {
724
725 // SoftApManager return code unknown
726 SOFT_AP_RETURN_CODE_UNKNOWN = 0;
727
728 // SoftAp started successfully
729 SOFT_AP_STARTED_SUCCESSFULLY = 1;
730
731 // Catch all for failures with no specific failure reason
732 SOFT_AP_FAILED_GENERAL_ERROR = 2;
733
734 // SoftAp failed to start due to NO_CHANNEL error
735 SOFT_AP_FAILED_NO_CHANNEL = 3;
736 }
737
738 // Historical, no longer used for writing as of 01/2017.
739 optional int32 return_code = 1 [deprecated = true];
Glen Kuhne94814572016-10-25 12:40:35 -0700740
741 // Occurrences of this soft AP return code
742 optional int32 count = 2;
Rebecca Silberstein28d9de22017-01-24 10:42:59 -0800743
744 // Result of attempt to start SoftAp
745 optional SoftApStartResult start_result = 3;
Glen Kuhne94814572016-10-25 12:40:35 -0700746}
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700747
748message StaEvent {
749 message ConfigInfo {
750 // The set of key management protocols supported by this configuration.
751 optional uint32 allowed_key_management = 1 [default = 0];
752
753 // The set of security protocols supported by this configuration.
754 optional uint32 allowed_protocols = 2 [default = 0];
755
756 // The set of authentication protocols supported by this configuration.
757 optional uint32 allowed_auth_algorithms = 3 [default = 0];
758
759 // The set of pairwise ciphers for WPA supported by this configuration.
760 optional uint32 allowed_pairwise_ciphers = 4 [default = 0];
761
762 // The set of group ciphers supported by this configuration.
763 optional uint32 allowed_group_ciphers = 5;
764
765 // Is this a 'hidden network'
766 optional bool hidden_ssid = 6;
767
768 // Is this a Hotspot 2.0 / passpoint network
769 optional bool is_passpoint = 7;
770
771 // Is this an 'ephemeral' network (Not in saved network list, recommended externally)
772 optional bool is_ephemeral = 8;
773
774 // Has a successful connection ever been established using this WifiConfiguration
775 optional bool has_ever_connected = 9;
776
777 // RSSI of the scan result candidate associated with this WifiConfiguration
778 optional int32 scan_rssi = 10 [default = -127];
779
780 // Frequency of the scan result candidate associated with this WifiConfiguration
781 optional int32 scan_freq = 11 [default = -1];
782 }
783
784 enum EventType {
785 // Default/Invalid event
786 TYPE_UNKNOWN = 0;
787
788 // Supplicant Association Rejection event. Code contains the 802.11
789 TYPE_ASSOCIATION_REJECTION_EVENT = 1;
790
791 // Supplicant L2 event,
792 TYPE_AUTHENTICATION_FAILURE_EVENT = 2;
793
794 // Supplicant L2 event
795 TYPE_NETWORK_CONNECTION_EVENT = 3;
796
797 // Supplicant L2 event
798 TYPE_NETWORK_DISCONNECTION_EVENT = 4;
799
800 // Supplicant L2 event
801 TYPE_SUPPLICANT_STATE_CHANGE_EVENT = 5;
802
803 // Supplicant L2 event
804 TYPE_CMD_ASSOCIATED_BSSID = 6;
805
806 // IP Manager successfully completed IP Provisioning
807 TYPE_CMD_IP_CONFIGURATION_SUCCESSFUL = 7;
808
809 // IP Manager failed to complete IP Provisioning
810 TYPE_CMD_IP_CONFIGURATION_LOST = 8;
811
812 // IP Manager lost reachability to network neighbors
813 TYPE_CMD_IP_REACHABILITY_LOST = 9;
814
815 // Indicator that Supplicant is targeting a BSSID for roam/connection
816 TYPE_CMD_TARGET_BSSID = 10;
817
818 // Wifi framework is initiating a connection attempt
819 TYPE_CMD_START_CONNECT = 11;
820
821 // Wifi framework is initiating a roaming connection attempt
822 TYPE_CMD_START_ROAM = 12;
823
824 // SystemAPI connect() command, Settings App
825 TYPE_CONNECT_NETWORK = 13;
826
827 // Network Agent has validated the internet connection (Captive Portal Check success, or user
828 // validation)
829 TYPE_NETWORK_AGENT_VALID_NETWORK = 14;
830
831 // Framework initiated disconnect. Sometimes generated to give an extra reason for a disconnect
832 // Should typically be followed by a NETWORK_DISCONNECTION_EVENT with a local_gen = true
833 TYPE_FRAMEWORK_DISCONNECT = 15;
Michael Plassbb367b62017-10-06 10:29:51 -0700834
835 // The NetworkAgent score for wifi has changed in a way that may impact
836 // connectivity
837 TYPE_SCORE_BREACH = 16;
Jong Wook Kim01ad38b2018-04-09 10:14:11 -0700838
839 // Framework changed Sta interface MAC address
840 TYPE_MAC_CHANGE = 17;
Jong Wook Kimb56979f2018-08-08 14:50:18 -0700841
842 // Wifi is turned on
843 TYPE_WIFI_ENABLED = 18;
844
845 // Wifi is turned off
846 TYPE_WIFI_DISABLED = 19;
Mingguang Xuca2aab12019-01-12 23:40:42 -0800847
848 // The NetworkAgent Wifi usability score has changed in a way that may
849 // impact connectivity
850 TYPE_WIFI_USABILITY_SCORE_BREACH = 20;
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700851 }
852
853 enum FrameworkDisconnectReason {
854 // default/none/unknown value
855 DISCONNECT_UNKNOWN = 0;
856
857 // API DISCONNECT
858 DISCONNECT_API = 1;
859
860 // Some framework internal reason (generic)
861 DISCONNECT_GENERIC = 2;
862
863 // Network Agent network validation failed, user signaled network unwanted
864 DISCONNECT_UNWANTED = 3;
865
866 // Roaming timed out
867 DISCONNECT_ROAM_WATCHDOG_TIMER = 4;
868
869 // P2P service requested wifi disconnect
870 DISCONNECT_P2P_DISCONNECT_WIFI_REQUEST = 5;
871
872 // SIM was removed while using a SIM config
873 DISCONNECT_RESET_SIM_NETWORKS = 6;
874 }
875
876 // Authentication Failure reasons as reported through the API.
877 enum AuthFailureReason {
878 // Unknown default
879 AUTH_FAILURE_UNKNOWN = 0;
880
881 // The reason code if there is no error during authentication. It could also imply that there no
882 // authentication in progress,
883 AUTH_FAILURE_NONE = 1;
884
885 // The reason code if there was a timeout authenticating.
886 AUTH_FAILURE_TIMEOUT = 2;
887
888 // The reason code if there was a wrong password while authenticating.
889 AUTH_FAILURE_WRONG_PSWD = 3;
890
891 // The reason code if there was EAP failure while authenticating.
892 AUTH_FAILURE_EAP_FAILURE = 4;
893 }
894
895 // What event was this
896 optional EventType type = 1;
897
898 // 80211 death reason code, relevant to NETWORK_DISCONNECTION_EVENTs
899 optional int32 reason = 2 [default = -1];
900
901 // 80211 Association Status code, relevant to ASSOCIATION_REJECTION_EVENTs
902 optional int32 status = 3 [default = -1];
903
904 // Designates whether a NETWORK_DISCONNECT_EVENT was by the STA or AP
905 optional bool local_gen = 4 [default = false];
906
907 // Network information from the WifiConfiguration of a framework initiated connection attempt
908 optional ConfigInfo config_info = 5;
909
910 // RSSI from the last rssi poll (Only valid for active connections)
911 optional int32 last_rssi = 6 [default = -127];
912
913 // Link speed from the last rssi poll (Only valid for active connections)
914 optional int32 last_link_speed = 7 [default = -1];
915
916 // Frequency from the last rssi poll (Only valid for active connections)
917 optional int32 last_freq = 8 [default = -1];
918
919 // Enum used to define bit positions in the supplicant_state_change_bitmask
920 // See {@code frameworks/base/wifi/java/android/net/wifi/SupplicantState.java} for documentation
921 enum SupplicantState {
922 STATE_DISCONNECTED = 0;
923
924 STATE_INTERFACE_DISABLED = 1;
925
926 STATE_INACTIVE = 2;
927
928 STATE_SCANNING = 3;
929
930 STATE_AUTHENTICATING = 4;
931
932 STATE_ASSOCIATING = 5;
933
934 STATE_ASSOCIATED = 6;
935
936 STATE_FOUR_WAY_HANDSHAKE = 7;
937
938 STATE_GROUP_HANDSHAKE = 8;
939
940 STATE_COMPLETED = 9;
941
942 STATE_DORMANT = 10;
943
944 STATE_UNINITIALIZED = 11;
945
946 STATE_INVALID = 12;
947 }
948
Jong Wook Kim411cab92018-04-26 15:09:23 -0700949 // Bit mask of all supplicant state changes that occurred since the last event
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700950 optional uint32 supplicant_state_changes_bitmask = 9 [default = 0];
951
952 // The number of milliseconds that have elapsed since the device booted
953 optional int64 start_time_millis = 10 [default = 0];
954
955 optional FrameworkDisconnectReason framework_disconnect_reason = 11 [default = DISCONNECT_UNKNOWN];
956
Jong Wook Kim411cab92018-04-26 15:09:23 -0700957 // Flag which indicates if an association rejection event occurred due to a timeout
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700958 optional bool association_timed_out = 12 [default = false];
959
960 // Authentication failure reason, as reported by WifiManager (calculated from state & deauth code)
961 optional AuthFailureReason auth_failure_reason = 13 [default = AUTH_FAILURE_UNKNOWN];
Michael Plassbb367b62017-10-06 10:29:51 -0700962
963 // NetworkAgent score of connected wifi
964 optional int32 last_score = 14 [default = -1];
Mingguang Xuca2aab12019-01-12 23:40:42 -0800965
966 // NetworkAgent Wifi usability score of connected wifi
967 optional int32 last_wifi_usability_score = 15 [default = -1];
Glen Kuhne8ce9a1c2017-03-28 14:02:48 -0700968}
Etan Cohen737addc2017-04-26 08:01:57 -0700969
970// Wi-Fi Aware metrics
971message WifiAwareLog {
972 // total number of unique apps that used Aware (measured on attach)
973 optional int32 num_apps = 1;
974
975 // total number of unique apps that used an identity callback when attaching
976 optional int32 num_apps_using_identity_callback = 2;
977
978 // maximum number of attaches for an app
979 optional int32 max_concurrent_attach_sessions_in_app = 3;
980
981 // histogram of attach request results
982 repeated NanStatusHistogramBucket histogram_attach_session_status = 4;
983
984 // maximum number of concurrent publish sessions in a single app
985 optional int32 max_concurrent_publish_in_app = 5;
986
987 // maximum number of concurrent subscribe sessions in a single app
988 optional int32 max_concurrent_subscribe_in_app = 6;
989
990 // maximum number of concurrent discovery (publish+subscribe) sessions in a single app
991 optional int32 max_concurrent_discovery_sessions_in_app = 7;
992
993 // maximum number of concurrent publish sessions in the system
994 optional int32 max_concurrent_publish_in_system = 8;
995
996 // maximum number of concurrent subscribe sessions in the system
997 optional int32 max_concurrent_subscribe_in_system = 9;
998
999 // maximum number of concurrent discovery (publish+subscribe) sessions in the system
1000 optional int32 max_concurrent_discovery_sessions_in_system = 10;
1001
1002 // histogram of publish request results
1003 repeated NanStatusHistogramBucket histogram_publish_status = 11;
1004
1005 // histogram of subscribe request results
1006 repeated NanStatusHistogramBucket histogram_subscribe_status = 12;
1007
1008 // number of unique apps which experienced a discovery session creation failure due to lack of
1009 // resources
1010 optional int32 num_apps_with_discovery_session_failure_out_of_resources = 13;
1011
1012 // histogram of create ndp request results
1013 repeated NanStatusHistogramBucket histogram_request_ndp_status = 14;
1014
1015 // histogram of create ndp out-of-band (OOB) request results
1016 repeated NanStatusHistogramBucket histogram_request_ndp_oob_status = 15;
1017
1018 // maximum number of concurrent active data-interfaces (NDI) in a single app
1019 optional int32 max_concurrent_ndi_in_app = 19;
1020
1021 // maximum number of concurrent active data-interfaces (NDI) in the system
1022 optional int32 max_concurrent_ndi_in_system = 20;
1023
1024 // maximum number of concurrent data-paths (NDP) in a single app
1025 optional int32 max_concurrent_ndp_in_app = 21;
1026
1027 // maximum number of concurrent data-paths (NDP) in the system
1028 optional int32 max_concurrent_ndp_in_system = 22;
1029
1030 // maximum number of concurrent secure data-paths (NDP) in a single app
1031 optional int32 max_concurrent_secure_ndp_in_app = 23;
1032
1033 // maximum number of concurrent secure data-paths (NDP) in the system
1034 optional int32 max_concurrent_secure_ndp_in_system = 24;
1035
1036 // maximum number of concurrent data-paths (NDP) per data-interface (NDI)
1037 optional int32 max_concurrent_ndp_per_ndi = 25;
1038
1039 // histogram of durations of Aware being available
1040 repeated HistogramBucket histogram_aware_available_duration_ms = 26;
1041
1042 // histogram of durations of Aware being enabled
1043 repeated HistogramBucket histogram_aware_enabled_duration_ms = 27;
1044
1045 // histogram of duration (in ms) of attach sessions
1046 repeated HistogramBucket histogram_attach_duration_ms = 28;
1047
1048 // histogram of duration (in ms) of publish sessions
1049 repeated HistogramBucket histogram_publish_session_duration_ms = 29;
1050
1051 // histogram of duration (in ms) of subscribe sessions
1052 repeated HistogramBucket histogram_subscribe_session_duration_ms = 30;
1053
1054 // histogram of duration (in ms) of data-paths (NDP)
1055 repeated HistogramBucket histogram_ndp_session_duration_ms = 31;
1056
1057 // histogram of usage (in MB) of data-paths (NDP)
1058 repeated HistogramBucket histogram_ndp_session_data_usage_mb = 32;
1059
1060 // histogram of usage (in MB) of data-path creation time (in ms) measured as request -> confirm
1061 repeated HistogramBucket histogram_ndp_creation_time_ms = 33;
1062
1063 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: minimum
1064 optional int64 ndp_creation_time_ms_min = 34;
1065
1066 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: maximum
1067 optional int64 ndp_creation_time_ms_max = 35;
1068
1069 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: sum
1070 optional int64 ndp_creation_time_ms_sum = 36;
1071
1072 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: sum of sq
1073 optional int64 ndp_creation_time_ms_sum_of_sq = 37;
1074
1075 // statistics for data-path (NDP) creation time (in ms) measured as request -> confirm: number of
1076 // samples
1077 optional int64 ndp_creation_time_ms_num_samples = 38;
1078
1079 // total time within the logging window that aware was available
1080 optional int64 available_time_ms = 39;
1081
1082 // total time within the logging window that aware was enabled
1083 optional int64 enabled_time_ms = 40;
1084
Etan Cohenfa723572018-03-13 07:25:50 -07001085 // maximum number of concurrent publish sessions enabling ranging in a single app
1086 optional int32 max_concurrent_publish_with_ranging_in_app = 41;
1087
1088 // maximum number of concurrent subscribe sessions specifying a geofence in a single app
1089 optional int32 max_concurrent_subscribe_with_ranging_in_app = 42;
1090
1091 // maximum number of concurrent publish sessions enabling ranging in the system
1092 optional int32 max_concurrent_publish_with_ranging_in_system = 43;
1093
1094 // maximum number of concurrent subscribe sessions specifying a geofence in the system
1095 optional int32 max_concurrent_subscribe_with_ranging_in_system = 44;
1096
1097 // histogram of subscribe session geofence minimum (only when specified)
1098 repeated HistogramBucket histogram_subscribe_geofence_min = 45;
1099
1100 // histogram of subscribe session geofence maximum (only when specified)
1101 repeated HistogramBucket histogram_subscribe_geofence_max = 46;
1102
1103 // total number of subscribe sessions which enabled ranging
1104 optional int32 num_subscribes_with_ranging = 47;
1105
1106 // total number of matches (service discovery indication) with ranging provided
1107 optional int32 num_matches_with_ranging = 48;
1108
1109 // total number of matches (service discovery indication) for service discovery with ranging
1110 // enabled which did not trigger ranging
1111 optional int32 num_matches_without_ranging_for_ranging_enabled_subscribes = 49;
1112
Etan Cohen737addc2017-04-26 08:01:57 -07001113 // Histogram bucket for Wi-Fi Aware logs. Range is [start, end)
1114 message HistogramBucket {
1115 // lower range of the bucket (inclusive)
1116 optional int64 start = 1;
1117
1118 // upper range of the bucket (exclusive)
1119 optional int64 end = 2;
1120
1121 // number of samples in the bucket
1122 optional int32 count = 3;
1123 }
1124
1125 // Status of various NAN operations
1126 enum NanStatusTypeEnum {
1127 // constant to be used by proto
1128 UNKNOWN = 0;
1129
1130 // NAN operation succeeded
1131 SUCCESS = 1;
1132
1133 // NAN Discovery Engine/Host driver failures
1134 INTERNAL_FAILURE = 2;
1135
1136 // NAN OTA failures
1137 PROTOCOL_FAILURE = 3;
1138
1139 // The publish/subscribe discovery session id is invalid
1140 INVALID_SESSION_ID = 4;
1141
1142 // Out of resources to fufill request
1143 NO_RESOURCES_AVAILABLE = 5;
1144
1145 // Invalid arguments passed
1146 INVALID_ARGS = 6;
1147
1148 // Invalid peer id
1149 INVALID_PEER_ID = 7;
1150
1151 // Invalid NAN data-path (ndp) id
1152 INVALID_NDP_ID = 8;
1153
1154 // Attempting to enable NAN when not available, e.g. wifi is disabled
1155 NAN_NOT_ALLOWED = 9;
1156
1157 // Over the air ACK not received
1158 NO_OTA_ACK = 10;
1159
1160 // Attempting to enable NAN when already enabled
1161 ALREADY_ENABLED = 11;
1162
1163 // Can't queue tx followup message foor transmission
1164 FOLLOWUP_TX_QUEUE_FULL = 12;
1165
1166 // Unsupported concurrency of NAN and another feature - NAN disabled
1167 UNSUPPORTED_CONCURRENCY_NAN_DISABLED = 13;
1168
1169 // Unknown NanStatusType
1170 UNKNOWN_HAL_STATUS = 14;
1171 }
1172
1173 // Histogram bucket for Wi-Fi Aware (NAN) status.
1174 message NanStatusHistogramBucket {
1175 // status type defining the bucket
1176 optional NanStatusTypeEnum nan_status_type = 1;
1177
1178 // number of samples in the bucket
1179 optional int32 count = 2;
1180 }
1181}
1182
Glen Kuhnee2d67c02017-04-25 13:08:29 -07001183// Data point used to build 'Number of Connectable Network' histograms
1184message NumConnectableNetworksBucket {
1185 // Number of connectable networks seen in a scan result
1186 optional int32 num_connectable_networks = 1 [default = 0];
1187
1188 // Number of scan results with num_connectable_networks
1189 optional int32 count = 2 [default = 0];
1190}
Mehdi Alizadehd9163cf2017-08-10 18:20:25 -07001191
1192// Pno scan metrics
1193// Here "Pno Scan" refers to the session of offloaded scans, these metrics count the result of a
1194// single session, and not the individual scans within that session.
1195message PnoScanMetrics {
1196 // Total number of attempts to offload pno scans
1197 optional int32 num_pno_scan_attempts = 1;
1198
1199 // Total number of pno scans failed
1200 optional int32 num_pno_scan_failed = 2;
1201
1202 // Number of pno scans started successfully over offload
1203 optional int32 num_pno_scan_started_over_offload = 3;
1204
1205 // Number of pno scans failed over offload
1206 optional int32 num_pno_scan_failed_over_offload = 4;
1207
1208 // Total number of pno scans that found any network
1209 optional int32 num_pno_found_network_events = 5;
1210}
Stephen Chenfc0facb2017-09-14 14:35:15 -07001211
1212// Number of occurrences for a particular "Connect to Network" Notification or
1213// notification Action.
1214message ConnectToNetworkNotificationAndActionCount {
1215
1216 // "Connect to Network" notifications
1217 enum Notification {
1218
1219 // Default
1220 NOTIFICATION_UNKNOWN = 0;
1221
1222 // Initial notification with a recommended network.
1223 NOTIFICATION_RECOMMEND_NETWORK = 1;
1224
1225 // Notification when connecting to the recommended network.
1226 NOTIFICATION_CONNECTING_TO_NETWORK = 2;
1227
1228 // Notification when successfully connected to the network.
1229 NOTIFICATION_CONNECTED_TO_NETWORK = 3;
1230
1231 // Notification when failed to connect to network.
1232 NOTIFICATION_FAILED_TO_CONNECT = 4;
1233 }
1234
1235 // "Connect to Network" notification actions
1236 enum Action {
1237
1238 // Default
1239 ACTION_UNKNOWN = 0;
1240
1241 // User dismissed the "Connect to Network" notification.
1242 ACTION_USER_DISMISSED_NOTIFICATION = 1;
1243
1244 // User tapped action button to connect to recommended network.
1245 ACTION_CONNECT_TO_NETWORK = 2;
1246
1247 // User tapped action button to open Wi-Fi Settings.
1248 ACTION_PICK_WIFI_NETWORK = 3;
1249
1250 // User tapped "Failed to connect" notification to open Wi-Fi Settings.
1251 ACTION_PICK_WIFI_NETWORK_AFTER_CONNECT_FAILURE = 4;
1252 }
1253
1254 // Recommenders of the "Connect to Network" notification
1255 enum Recommender {
1256
1257 // Default.
1258 RECOMMENDER_UNKNOWN = 0;
1259
1260 // Open Network Available recommender.
1261 RECOMMENDER_OPEN = 1;
1262 }
1263
1264 // Notification Type.
1265 optional Notification notification = 1;
1266
1267 // Action Type.
1268 optional Action action = 2;
1269
1270 // Recommender Type.
1271 optional Recommender recommender = 3;
1272
1273 // Occurrences of this action.
1274 optional int32 count = 4;
1275}
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001276
1277// SoftAP event tracking sessions and client counts
1278message SoftApConnectedClientsEvent {
1279
1280 // Soft AP event Types
1281 enum SoftApEventType {
1282
1283 // Soft AP is Up and ready for use
1284 SOFT_AP_UP = 0;
1285
1286 // Soft AP is Down
1287 SOFT_AP_DOWN = 1;
1288
1289 // Number of connected soft AP clients has changed
1290 NUM_CLIENTS_CHANGED = 2;
1291 }
1292
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001293 // Soft AP channel bandwidth types
1294 enum ChannelBandwidth {
1295
1296 BANDWIDTH_INVALID = 0;
1297
1298 BANDWIDTH_20_NOHT = 1;
1299
1300 BANDWIDTH_20 = 2;
1301
1302 BANDWIDTH_40 = 3;
1303
1304 BANDWIDTH_80 = 4;
1305
1306 BANDWIDTH_80P80 = 5;
1307
1308 BANDWIDTH_160 = 6;
1309 }
1310
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001311 // Type of event being recorded
1312 optional SoftApEventType event_type = 1;
1313
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001314 // Time passed since last boot in milliseconds
Mehdi Alizadeh2a59c52ca2017-10-18 15:42:35 -07001315 optional int64 time_stamp_millis = 2;
1316
1317 // Number of connected clients if event_type is NUM_CLIENTS_CHANGED, otherwise zero.
1318 optional int32 num_connected_clients = 3;
Mehdi Alizadeh24498192018-03-15 13:02:51 -07001319
1320 // Channel frequency used for Soft AP
1321 optional int32 channel_frequency = 4;
1322
1323 // Channel bandwidth used for Soft AP
1324 optional ChannelBandwidth channel_bandwidth = 5;
Jong Wook Kim72c49ee2017-10-26 13:16:36 -07001325}
1326
1327// Wps connection metrics
1328// Keeps track of Wi-Fi Protected Setup usage
1329message WpsMetrics {
1330 // Total number of wps connection attempts
1331 optional int32 num_wps_attempts = 1;
1332
1333 // Total number of wps connection successes
1334 optional int32 num_wps_success = 2;
1335
1336 // Total number of wps failures on start
1337 optional int32 num_wps_start_failure = 3;
1338
1339 // Total number of wps overlap failure
1340 optional int32 num_wps_overlap_failure = 4;
1341
1342 // Total number of wps timeout failure
1343 optional int32 num_wps_timeout_failure = 5;
1344
1345 // Total number of other wps failure during connection
1346 optional int32 num_wps_other_connection_failure = 6;
1347
1348 // Total number of supplicant failure after wps
1349 optional int32 num_wps_supplicant_failure = 7;
1350
1351 // Total number of wps cancellation
1352 optional int32 num_wps_cancellation = 8;
1353}
Siddharth Rayac8b69a2018-01-27 18:05:44 -08001354
1355// Power stats for Wifi
1356message WifiPowerStats {
1357
1358 // Duration of log (ms)
1359 optional int64 logging_duration_ms = 1;
1360
1361 // Energy consumed by wifi (mAh)
1362 optional double energy_consumed_mah = 2;
1363
1364 // Amount of time wifi is in idle (ms)
1365 optional int64 idle_time_ms = 3;
1366
1367 // Amount of time wifi is in rx (ms)
1368 optional int64 rx_time_ms = 4;
1369
1370 // Amount of time wifi is in tx (ms)
1371 optional int64 tx_time_ms = 5;
Blake Kragten354c83d2018-12-04 16:28:44 -08001372
1373 // Amount of time kernel is active because of wifi data (ms)
1374 optional int64 wifi_kernel_active_time_ms = 6;
1375
1376 // Number of packets sent (tx)
1377 optional int64 num_packets_tx = 7;
1378
1379 // Number of bytes sent (tx)
1380 optional int64 num_bytes_tx = 8;
1381
1382 // Number of packets received (rx)
1383 optional int64 num_packets_rx = 9;
1384
1385 // Number of bytes sent (rx)
1386 optional int64 num_bytes_rx = 10;
1387
1388 // Amount of time wifi is in sleep (ms)
1389 optional int64 sleep_time_ms = 11;
1390
1391 // Amount of time wifi is scanning (ms)
1392 optional int64 scan_time_ms = 12;
Ningyuan Wang72886332017-12-20 16:17:33 -08001393}
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001394
1395// Metrics for Wifi Wake
1396message WifiWakeStats {
1397 // An individual session for Wifi Wake
1398 message Session {
1399 // A Wifi Wake lifecycle event
1400 message Event {
1401 // Elapsed time in milliseconds since start of session.
1402 optional int64 elapsed_time_millis = 1;
1403
1404 // Number of scans that have occurred since start of session.
1405 optional int32 elapsed_scans = 2;
1406 }
1407
1408 // Start time of session in milliseconds.
1409 optional int64 start_time_millis = 1;
1410
Eric Schwarzenbach3cad6242018-03-26 10:23:40 -07001411 // The number of networks the lock was provided with at start.
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001412 optional int32 locked_networks_at_start = 2;
1413
Eric Schwarzenbach3cad6242018-03-26 10:23:40 -07001414 // The number of networks in the lock at the time of the initialize event. Only valid if
1415 // initialize_event is recorded.
1416 optional int32 locked_networks_at_initialize = 6;
1417
1418 // Event for fully initializing the WakeupLock (i.e. WakeupLock is "locked").
1419 optional Event initialize_event = 7;
1420
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001421 // Event for unlocking the WakeupLock. Does not occur if lock was initialized with 0 networks.
1422 optional Event unlock_event = 3;
1423
1424 // Event for triggering wakeup.
1425 optional Event wakeup_event = 4;
1426
1427 // Event for WifiWake reset event. This event marks the end of a session.
1428 optional Event reset_event = 5;
1429 }
1430
1431 // Total number of sessions for Wifi Wake.
1432 optional int32 num_sessions = 1;
1433
1434 // Session information for every Wifi Wake session (up to a maximum of 10).
1435 repeated Session sessions = 2;
Eric Schwarzenbach3cad6242018-03-26 10:23:40 -07001436
1437 // Number of ignored calls to start (due to WakeupController already being active).
1438 optional int32 num_ignored_starts = 3;
1439
1440 // Number of Wifi Wake sessions that have recorded wakeup events.
1441 optional int32 num_wakeups = 4;
Eric Schwarzenbach9f941f92018-02-16 11:10:30 -08001442}
Etan Cohen4ec8dd32018-03-16 09:43:01 -07001443
1444// Metrics for Wi-Fi RTT
1445message WifiRttLog {
1446 // Number of RTT request API calls
1447 optional int32 num_requests = 1;
1448
1449 // Histogram of RTT operation overall status
1450 repeated RttOverallStatusHistogramBucket histogram_overall_status = 2;
1451
1452 // RTT to Access Points metrics
1453 optional RttToPeerLog rtt_to_ap = 3;
1454
1455 // RTT to Wi-Fi Aware peers metrics
1456 optional RttToPeerLog rtt_to_aware = 4;
1457
1458 // Metrics for a RTT to Peer (peer = AP or Wi-Fi Aware)
1459 message RttToPeerLog {
1460 // Total number of API calls
1461 optional int32 num_requests = 1;
1462
1463 // Total number of individual requests
1464 optional int32 num_individual_requests = 2;
1465
1466 // Total number of apps which requested RTT
1467 optional int32 num_apps = 3;
1468
1469 // Histogram of total number of RTT requests by an app (WifiRttManager#startRanging)
1470 repeated HistogramBucket histogram_num_requests_per_app = 4;
1471
1472 // Histogram of number of peers in a single RTT request (RangingRequest entries)
1473 repeated HistogramBucket histogram_num_peers_per_request = 5;
1474
1475 // Histogram of status of individual RTT operations (RangingResult entries)
1476 repeated RttIndividualStatusHistogramBucket histogram_individual_status = 6;
1477
1478 // Histogram of measured distances (RangingResult entries)
1479 repeated HistogramBucket histogram_distance = 7;
1480
1481 // Histogram of interval of RTT requests by an app (WifiRttManager#startRanging)
1482 repeated HistogramBucket histogram_request_interval_ms = 8;
1483 }
1484
1485 // Histogram bucket for Wi-Fi RTT logs. Range is [start, end)
1486 message HistogramBucket {
1487 // lower range of the bucket (inclusive)
1488 optional int64 start = 1;
1489
1490 // upper range of the bucket (exclusive)
1491 optional int64 end = 2;
1492
1493 // number of samples in the bucket
1494 optional int32 count = 3;
1495 }
1496
1497 // Status codes for overall RTT operation
1498 enum RttOverallStatusTypeEnum {
1499 // constant to be used by proto
1500 OVERALL_UNKNOWN = 0;
1501
1502 // RTT operation succeeded (individual results may still fail)
1503 OVERALL_SUCCESS = 1;
1504
1505 // RTT operation failed (unspecified reason)
1506 OVERALL_FAIL = 2;
1507
1508 // RTT operation failed since RTT was not available (e.g. Airplane mode)
1509 OVERALL_RTT_NOT_AVAILABLE = 3;
1510
1511 // RTT operation timed-out: didn't receive response from HAL in expected time
1512 OVERALL_TIMEOUT = 4;
1513
1514 // RTT operation aborted since the app is spamming the service
1515 OVERALL_THROTTLE = 5;
1516
1517 // RTT request to HAL received immediate failure
1518 OVERALL_HAL_FAILURE = 6;
1519
1520 // RTT to Wi-Fi Aware peer using PeerHandle failed to get a MAC address translation
1521 OVERALL_AWARE_TRANSLATION_FAILURE = 7;
1522
1523 // RTT operation failed due to missing Location permission (post execution)
1524 OVERALL_LOCATION_PERMISSION_MISSING = 8;
1525 }
1526
1527 // Status codes for individual RTT operation
1528 enum RttIndividualStatusTypeEnum {
1529 // constant to be used by proto
1530 UNKNOWN = 0;
1531
1532 // RTT operation succeeded
1533 SUCCESS = 1;
1534
1535 // RTT failure: generic reason (no further information)
1536 FAILURE = 2;
1537
1538 // Target STA does not respond to request
1539 FAIL_NO_RSP = 3;
1540
1541 // Request rejected. Applies to 2-sided RTT only
1542 FAIL_REJECTED = 4;
1543
1544 // Operation not scheduled
1545 FAIL_NOT_SCHEDULED_YET = 5;
1546
1547 // Timing measurement times out
1548 FAIL_TM_TIMEOUT = 6;
1549
1550 // Target on different channel, cannot range
1551 FAIL_AP_ON_DIFF_CHANNEL = 7;
1552
1553 // Ranging not supported
1554 FAIL_NO_CAPABILITY = 8;
1555
1556 // Request aborted for unknown reason
1557 ABORTED = 9;
1558
1559 // Invalid T1-T4 timestamp
1560 FAIL_INVALID_TS = 10;
1561
1562 // 11mc protocol failed
1563 FAIL_PROTOCOL = 11;
1564
1565 // Request could not be scheduled
1566 FAIL_SCHEDULE = 12;
1567
1568 // Responder cannot collaborate at time of request
1569 FAIL_BUSY_TRY_LATER = 13;
1570
1571 // Bad request args
1572 INVALID_REQ = 14;
1573
1574 // WiFi not enabled
1575 NO_WIFI = 15;
1576
1577 // Responder overrides param info, cannot range with new params
1578 FAIL_FTM_PARAM_OVERRIDE = 16;
1579
1580 // HAL did not provide a result to a framework request
1581 MISSING_RESULT = 17;
1582 }
1583
1584 // Histogram bucket for Wi-Fi RTT overall operation status
1585 message RttOverallStatusHistogramBucket {
1586 // status type defining the bucket
1587 optional RttOverallStatusTypeEnum status_type = 1;
1588
1589 // number of samples in the bucket
1590 optional int32 count = 2;
1591 }
1592
1593 // Histogram bucket for Wi-Fi RTT individual operation status
1594 message RttIndividualStatusHistogramBucket {
1595 // status type defining the bucket
1596 optional RttIndividualStatusTypeEnum status_type = 1;
1597
1598 // number of samples in the bucket
1599 optional int32 count = 2;
1600 }
1601}
xshub483b722018-05-22 15:46:26 -07001602
1603// Usage data for the wifi radio while device is running on battery.
1604message WifiRadioUsage {
1605 // Duration of log (ms)
1606 optional int64 logging_duration_ms = 1;
1607
1608 // Total time for which the radio is awake due to scan.
1609 optional int64 scan_time_ms = 2;
Jong Wook Kim411cab92018-04-26 15:09:23 -07001610}
1611
1612message ExperimentValues {
1613 // Indicates if we are logging WifiIsUnusableEvent in metrics
1614 optional bool wifi_is_unusable_logging_enabled = 1;
1615
1616 // Minimum number of txBad to trigger a data stall
1617 optional int32 wifi_data_stall_min_tx_bad = 2;
1618
1619 // Minimum number of txSuccess to trigger a data stall
1620 // when rxSuccess is 0
1621 optional int32 wifi_data_stall_min_tx_success_without_rx = 3;
Jong Wook Kime4aa37f2018-04-23 11:18:24 -07001622
1623 // Indicates if we are logging LinkSpeedCount in metrics
1624 optional bool link_speed_counts_logging_enabled = 4;
Jong Wook Kim411cab92018-04-26 15:09:23 -07001625}
1626
1627message WifiIsUnusableEvent {
1628 enum TriggerType {
1629 // Default/Invalid event
1630 TYPE_UNKNOWN = 0;
1631
1632 // There is a data stall from tx failures
1633 TYPE_DATA_STALL_BAD_TX = 1;
1634
1635 // There is a data stall from rx failures
1636 TYPE_DATA_STALL_TX_WITHOUT_RX = 2;
1637
1638 // There is a data stall from both tx and rx failures
1639 TYPE_DATA_STALL_BOTH = 3;
1640
1641 // Firmware generated an alert
1642 TYPE_FIRMWARE_ALERT = 4;
1643 }
1644
1645 // What event triggered WifiIsUnusableEvent.
1646 optional TriggerType type = 1;
1647
1648 // The timestamp at which this event occurred.
1649 // Measured in milliseconds that have elapsed since the device booted.
1650 optional int64 start_time_millis = 2;
1651
1652 // NetworkAgent score of connected wifi.
1653 // Defaults to -1 if the score was never set.
1654 optional int32 last_score = 3 [default = -1];
1655
1656 // Delta of successfully transmitted (ACKed) unicast data packets
1657 // between the last two WifiLinkLayerStats.
1658 optional int64 tx_success_delta = 4;
1659
1660 // Delta of transmitted unicast data retry packets
1661 // between the last two WifiLinkLayerStats.
1662 optional int64 tx_retries_delta = 5;
1663
1664 // Delta of lost (not ACKed) transmitted unicast data packets
1665 // between the last two WifiLinkLayerStats.
1666 optional int64 tx_bad_delta = 6;
1667
1668 // Delta of received unicast data packets
1669 // between the last two WifiLinkLayerStats.
1670 optional int64 rx_success_delta = 7;
1671
1672 // Time in millisecond between the last two WifiLinkLayerStats.
1673 optional int64 packet_update_time_delta = 8;
1674
1675 // The timestamp at which the last WifiLinkLayerStats was updated.
1676 // Measured in milliseconds that have elapsed since the device booted.
1677 optional int64 last_link_layer_stats_update_time = 9;
1678
1679 // Firmware alert code. Only valid when the event was triggered by a firmware alert, otherwise -1.
1680 optional int32 firmware_alert_code = 10 [default = -1];
Mingguang Xuca2aab12019-01-12 23:40:42 -08001681
1682 // NetworkAgent wifi usability score of connected wifi.
1683 // Defaults to -1 if the score was never set.
1684 optional int32 last_wifi_usability_score = 11 [default = -1];
Ahmed ElArabawyba64b612018-06-15 09:17:45 -07001685}
Ecco Park5a403002018-07-23 15:53:10 -07001686
1687message PasspointProfileTypeCount {
1688 enum EapMethod {
1689 // Unknown Type
1690 TYPE_UNKNOWN = 0;
1691
1692 // EAP_TLS (13)
1693 TYPE_EAP_TLS = 1;
1694
1695 // EAP_TTLS (21)
1696 TYPE_EAP_TTLS = 2;
1697
1698 // EAP_SIM (18)
1699 TYPE_EAP_SIM = 3;
1700
1701 // EAP_AKA (23)
1702 TYPE_EAP_AKA = 4;
1703
1704 // EAP_AKA_PRIME (50)
1705 TYPE_EAP_AKA_PRIME = 5;
1706 }
1707
1708 // Eap method type set in Passpoint profile
1709 optional EapMethod eap_method_type = 1;
1710
1711 // Num of installed Passpoint profile with same eap method
1712 optional int32 count = 2;
xshu0e0dea42018-09-17 17:30:15 -07001713}
1714
1715message WifiLinkLayerUsageStats {
1716 // Total logging duration in ms.
1717 optional int64 logging_duration_ms = 1;
1718
1719 // Total time the wifi radio is on in ms over the logging duration.
1720 optional int64 radio_on_time_ms = 2;
1721
1722 // Total time the wifi radio is doing tx in ms over the logging duration.
1723 optional int64 radio_tx_time_ms = 3;
1724
1725 // Total time the wifi radio is doing rx in ms over the logging duration.
1726 optional int64 radio_rx_time_ms = 4;
1727
1728 // Total time the wifi radio is scanning in ms over the logging duration.
1729 optional int64 radio_scan_time_ms = 5;
xshu0f91dd62018-11-08 15:51:07 -08001730
1731 // Total time the wifi radio spent doing nan scans in ms over the logging duration.
1732 optional int64 radio_nan_scan_time_ms = 6;
1733
1734 // Total time the wifi radio spent doing background scans in ms over the logging duration.
1735 optional int64 radio_background_scan_time_ms = 7;
1736
1737 // Total time the wifi radio spent doing roam scans in ms over the logging duration.
1738 optional int64 radio_roam_scan_time_ms = 8;
1739
1740 // Total time the wifi radio spent doing pno scans in ms over the logging duration.
1741 optional int64 radio_pno_scan_time_ms = 9;
1742
1743 // Total time the wifi radio spent doing hotspot 2.0 scans and GAS exchange
1744 // in ms over the logging duration.
1745 optional int64 radio_hs20_scan_time_ms = 10;
xshua33726e2018-09-24 15:02:23 -07001746}
1747
1748message WifiUsabilityStatsEntry {
1749 // Absolute milliseconds from device boot when these stats were sampled
1750 optional int64 time_stamp_ms = 1;
1751
1752 // The RSSI at the sample time
1753 optional int32 rssi = 2;
1754
1755 // Link speed at the sample time in Mbps
1756 optional int32 link_speed_mbps = 3;
1757
1758 // The total number of tx success counted from the last radio chip reset
1759 optional int64 total_tx_success = 4;
1760
1761 // The total number of MPDU data packet retries counted from the last radio chip reset
1762 optional int64 total_tx_retries = 5;
1763
1764 // The total number of tx bad counted from the last radio chip reset
1765 optional int64 total_tx_bad = 6;
1766
1767 // The total number of rx success counted from the last radio chip reset
1768 optional int64 total_rx_success = 7;
1769
1770 // The total time the wifi radio is on in ms counted from the last radio chip reset
1771 optional int64 total_radio_on_time_ms = 8;
1772
1773 // The total time the wifi radio is doing tx in ms counted from the last radio chip reset
1774 optional int64 total_radio_tx_time_ms = 9;
1775
1776 // The total time the wifi radio is doing rx in ms counted from the last radio chip reset
1777 optional int64 total_radio_rx_time_ms = 10;
1778
1779 // The total time spent on all types of scans in ms counted from the last radio chip reset
1780 optional int64 total_scan_time_ms = 11;
1781
1782 // The total time spent on nan scans in ms counted from the last radio chip reset
1783 optional int64 total_nan_scan_time_ms = 12;
1784
1785 // The total time spent on background scans in ms counted from the last radio chip reset
1786 optional int64 total_background_scan_time_ms = 13;
1787
1788 // The total time spent on roam scans in ms counted from the last radio chip reset
1789 optional int64 total_roam_scan_time_ms = 14;
1790
1791 // The total time spent on pno scans in ms counted from the last radio chip reset
1792 optional int64 total_pno_scan_time_ms = 15;
1793
1794 // The total time spent on hotspot2.0 scans and GAS exchange in ms counted from the last radio
1795 // chip reset
1796 optional int64 total_hotspot_2_scan_time_ms = 16;
Mingguang Xuca2aab12019-01-12 23:40:42 -08001797
1798 // Internal framework Wifi score
1799 optional int32 wifi_score = 17;
1800
1801 // Wifi usability score provided by external system app
1802 optional int32 wifi_usability_score = 18;
1803
1804 // Sequence number from external system app to framework
1805 optional int32 seq_num_to_framework = 19;
xshua33726e2018-09-24 15:02:23 -07001806}
1807
1808message WifiUsabilityStats {
1809 enum Label {
1810 // Default label
1811 LABEL_UNKNOWN = 0;
1812
1813 // Wifi is usable
1814 LABEL_GOOD = 1;
1815
1816 // Wifi is unusable
1817 LABEL_BAD = 2;
1818 }
1819
1820 // The current wifi usability state
1821 optional Label label = 1;
1822
1823 // The list of timestamped wifi usability stats
1824 repeated WifiUsabilityStatsEntry stats = 2;
David Su367bdff2018-12-13 13:39:11 -08001825}
1826
1827message DeviceMobilityStatePnoScanStats {
1828 // see WifiManager.DEVICE_MOBILITY_STATE_* constants
1829 enum DeviceMobilityState {
1830 // Unknown mobility
1831 UNKNOWN = 0;
1832
1833 // High movement
1834 HIGH_MVMT = 1;
1835
1836 // Low movement
1837 LOW_MVMT = 2;
1838
1839 // Stationary
1840 STATIONARY = 3;
1841 }
1842
1843 // The device mobility state
1844 optional DeviceMobilityState device_mobility_state = 1;
1845
1846 // The number of times that this state was entered
1847 optional int32 num_times_entered_state = 2;
1848
1849 // The total duration elapsed while in this mobility state, in ms
1850 optional int64 total_duration_ms = 3;
1851
1852 // the total duration elapsed while in this mobility state with PNO scans running, in ms
1853 optional int64 pno_duration_ms = 4;
1854}
Jimmy Chen0142e8b2018-11-23 16:25:57 +08001855
1856// The information about the Wifi P2p events.
1857message WifiP2pStats {
1858
1859 // Group event list tracking sessions and client counts in tethered mode.
1860 repeated GroupEvent group_event = 1;
1861
1862 // Session information that gets logged for every Wifi P2p connection.
1863 repeated P2pConnectionEvent connection_event = 2;
1864
1865 // Number of persistent group in the user profile.
1866 optional int32 num_persistent_group = 3;
1867
1868 // Number of peer scan.
1869 optional int32 num_total_peer_scans = 4;
1870
1871 // Number of service scan.
1872 optional int32 num_total_service_scans = 5;
1873}
1874
1875message P2pConnectionEvent {
1876
1877 enum ConnectionType {
1878
1879 // fresh new connection.
1880 CONNECTION_FRESH = 0;
1881
1882 // reinvoke a group.
1883 CONNECTION_REINVOKE = 1;
1884
1885 // create a group with the current device as the group owner locally.
1886 CONNECTION_LOCAL = 2;
1887
1888 // create a group or join a group with config.
1889 CONNECTION_FAST = 3;
1890 }
1891
1892 enum ConnectivityLevelFailure {
1893
1894 // Failure is unknown.
1895 CLF_UNKNOWN = 0;
1896
1897 // No failure.
1898 CLF_NONE = 1;
1899
1900 // Timeout for current connecting request.
1901 CLF_TIMEOUT = 2;
1902
1903 // The connecting request is canceled by the user.
1904 CLF_CANCEL = 3;
1905
1906 // Provision discovery failure, e.g. no pin code, timeout, rejected by the peer.
1907 CLF_PROV_DISC_FAIL = 4;
1908
1909 // Invitation failure, e.g. rejected by the peer.
1910 CLF_INVITATION_FAIL = 5;
1911
1912 // Incoming request is rejected by the user.
1913 CLF_USER_REJECT = 6;
1914
1915 // New connection request is issued before ending previous connecting request.
1916 CLF_NEW_CONNECTION_ATTEMPT = 7;
1917 }
1918
1919 // WPS method.
1920 enum WpsMethod {
1921 // WPS is skipped for Group Reinvoke.
1922 WPS_NA = -1;
1923
1924 // Push button configuration.
1925 WPS_PBC = 0;
1926
1927 // Display pin method configuration - pin is generated and displayed on device.
1928 WPS_DISPLAY = 1;
1929
1930 // Keypad pin method configuration - pin is entered on device.
1931 WPS_KEYPAD = 2;
1932
1933 // Label pin method configuration - pin is labelled on device.
1934 WPS_LABEL = 3;
1935 }
1936
1937 // Start time of the connection.
1938 optional int64 start_time_millis = 1;
1939
1940 // Type of the connection.
1941 optional ConnectionType connection_type = 2;
1942
1943 // WPS method.
1944 optional WpsMethod wps_method = 3 [default = WPS_NA];
1945
1946 // Duration to connect.
1947 optional int32 duration_taken_to_connect_millis = 4;
1948
1949 // Failures that happen at the connectivity layer.
1950 optional ConnectivityLevelFailure connectivity_level_failure_code = 5;
1951}
1952
1953// GroupEvent tracking group information from GroupStarted to GroupRemoved.
1954message GroupEvent {
1955
1956 enum GroupRole {
1957
1958 GROUP_OWNER = 0;
1959
1960 GROUP_CLIENT = 1;
1961 }
1962
1963 // The ID of network in supplicant for this group.
1964 optional int32 net_id = 1;
1965
1966 // Start time of the group.
1967 optional int64 start_time_millis = 2;
1968
1969 // Channel frequency used for Group.
1970 optional int32 channel_frequency = 3;
1971
1972 // Is group owner or group client.
1973 optional GroupRole group_role = 5;
1974
1975 // Number of connected clients.
1976 optional int32 num_connected_clients = 6;
1977
1978 // Cumulative number of connected clients.
1979 optional int32 num_cumulative_clients = 7;
1980
1981 // The session duration.
1982 optional int32 session_duration_millis = 8;
1983
1984 // The idle duration. A group without any client is in idle.
1985 optional int32 idle_duration_millis = 9;
1986}