Skip to content

Commit

Permalink
Add DisplayRegionIdentified to client side telemetry (#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
isra-fel authored Feb 23, 2023
1 parent 4aedaa4 commit 6310f19
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Common/MetricHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,10 @@ private void PopulatePropertiesFromQos(AzurePSQoSEvent qos, IDictionary<string,
{
eventProperties.Add("survey-prompted", qos.SurveyPrompted.ToString());
}
if (!string.IsNullOrEmpty(qos.DisplayRegionIdentified))
{
eventProperties.Add("DisplayRegionIdentified", qos.DisplayRegionIdentified);
}
if (qos.Uid != null)
{
eventProperties.Add("UserId", qos.Uid);
Expand Down

0 comments on commit 6310f19

Please sign in to comment.