@@ -107,19 +107,32 @@ public class UIDOperatorVerticle extends AbstractVerticle {
107107 private final UidInstanceIdProvider uidInstanceIdProvider ;
108108 protected IUIDOperatorService idService ;
109109
110+ // uid2_operator_identity_map_inputs
110111 private final Map <String , DistributionSummary > _identityMapMetricSummaries = new HashMap <>();
112+ // uid2_operator_identity_map_services_inputs
111113 private final Map <String , DistributionSummary > _identityMapServicesMetricSummaries = new HashMap <>();
114+ // uid2_token_refresh_duration_seconds
112115 private final Map <Tuple .Tuple2 <String , Boolean >, DistributionSummary > _refreshDurationMetricSummaries = new HashMap <>();
116+ // uid2_advertising_token_expired_on_refresh_total
113117 private final Map <Tuple .Tuple3 <String , Boolean , Boolean >, Counter > _advertisingTokenExpiryStatus = new HashMap <>();
118+ // uid2_token_generate_tcf_usage_total
114119 private final Map <String , Counter > _tokenGenerateTCFUsage = new HashMap <>();
120+ // uid2_operator_identity_map_unmapped_total (reason=invalid, reason=optout)
115121 private final Map <String , Tuple .Tuple2 <Counter , Counter >> _identityMapUnmappedIdentifiers = new HashMap <>();
122+ // uid2_operator_identity_map_services_unmapped_total (reason=invalid, reason=optout)
116123 private final Map <String , Tuple .Tuple2 <Counter , Counter >> _identityMapServicesUnmappedIdentifiers = new HashMap <>();
124+ // uid2_operator_identity_map_unmapped_requests_total
117125 private final Map <String , Counter > _identityMapRequestWithUnmapped = new HashMap <>();
126+ // uid2_client_sdk_versions_total
118127 private final Map <Tuple .Tuple2 <String , String >, Counter > _clientVersions = new HashMap <>();
128+ // uid2_token_validate_total
119129 private final Map <Tuple .Tuple2 <String , String >, Counter > _tokenValidateCounters = new HashMap <>();
120130
131+ // uid2_operator_optout_status_input_size
121132 private final Map <String , DistributionSummary > optOutStatusInputSizeCounters = new HashMap <>();
133+ // uid2_operator_optout_status_optout_size
122134 private final Map <String , DistributionSummary > optOutStatusOptOutSizeCounters = new HashMap <>();
135+
123136 private final IdentityScope identityScope ;
124137 private final V2PayloadHandler encryptedPayloadHandler ;
125138 private final boolean phoneSupport ;
0 commit comments