You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Log analytics funnels assume "user_Id" property is present on root level of the telemetry event to correlate users in the funnel.
AzureApplicationInsightsProvider does not allow arbitrary fields on the root level:
<InputClaims>
...
// Works - Produces correlationId in custom dimensions
<InputClaimClaimTypeReferenceId="CorrelationId"PartnerClaimType="{property:CorrelationId}"DefaultValue="{Context:CorrelationId}" />
// Does not work - produces nothing
<InputClaimClaimTypeReferenceId="CorrelationId"PartnerClaimType="user_Id"DefaultValue="{Context:CorrelationId}" />
...
</InputClaims>
Funnels cannot track events in Azure AD B2C without rewriting the kql query manually
Expected behaviour:
A) Above just works
or
B) A way to send user_id is documented in Microsoft learn
The text was updated successfully, but these errors were encountered:
Issue:
Expected behaviour:
A) Above just works
or
B) A way to send user_id is documented in Microsoft learn
The text was updated successfully, but these errors were encountered: