From 5d207f9e15cd1fbf457446750e941b112f057f22 Mon Sep 17 00:00:00 2001 From: hai007 Date: Sat, 22 Oct 2022 21:50:48 -0700 Subject: [PATCH] Add the frequency of the connected AP into the ConnectionAttemptMetadata, the purpose is to judge if there is MCC symptom. Storage increase will be 4 bytes increasing in ConnetionAttemptMetadata. (4 bytes in each sharing * 2610000 shares/daily * 7 days/week) / GB = about 0.7 GB) (2610000 was based on current daily connection attempts count on 20221017.) PiperOrigin-RevId: 483115234 --- internal/proto/analytics/connections_log.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/proto/analytics/connections_log.proto b/internal/proto/analytics/connections_log.proto index f53391dc..172ee3cd 100644 --- a/internal/proto/analytics/connections_log.proto +++ b/internal/proto/analytics/connections_log.proto @@ -463,6 +463,9 @@ message ConnectionsLog { // The receive buffer size of the created socket optional int32 receive_buffer_size = 13; + + // The frequency of the connected WiFi AP. + optional int32 connected_ap_frequency = 14; } } // LINT.ThenChange()