From ea939b70d3ece5d36d5c59b74f243ae42aa95d78 Mon Sep 17 00:00:00 2001 From: hai007 Date: Thu, 26 May 2022 07:21:58 -0700 Subject: [PATCH] Add connection attempt type into the established connection for distinguishing the initial and upgrade in the pipeline. So we could get the information of: 1. the transfer speed in initial connection stage or upgraded stage. 2. when doing the end to end mapping, we could map the right metadate field into right established connection for getting more correct analysis. PiperOrigin-RevId: 451156631 --- 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 a63e4fba..b82532eb 100644 --- a/internal/proto/analytics/connections_log.proto +++ b/internal/proto/analytics/connections_log.proto @@ -284,6 +284,9 @@ message ConnectionsLog { // The token use to identify this established connection. optional string connection_token = 7; + + // The type of established connection. + optional location.nearby.proto.connections.ConnectionAttemptType type = 8; } // A Payload transferred (or attempted to be transferred) between devices.