I have added the technical profile to log the custom events in the AppInsights and called the technical profile from the sign-in TP's ValidationTechnicalProfile section, but the logs are not recorded in the AppInsights. Can someone please help me to resolve this issue?
Technical Profile to Log in App Insights
<TechnicalProfile Id="AppInsights-CustomSigninActiveCheck">
<InputClaims>
<InputClaim ClaimTypeReferenceId="EventType" PartnerClaimType="eventName" DefaultValue="IsActiveStatusCheck" />
<InputClaim ClaimTypeReferenceId="objectId" PartnerClaimType="{property:objectId}" DefaultValue="Not Applicable" />
<InputClaim ClaimTypeReferenceId="signInName" PartnerClaimType="{property:signInName}" DefaultValue="Not Applicable" />
<InputClaim ClaimTypeReferenceId="isUserActive" />
</InputClaims>
<IncludeTechnicalProfile ReferenceId="AppInsights-Common" />
</TechnicalProfile>
Called the TP from the Sign-in TP
</OutputClaims>
<ValidationTechnicalProfiles>
<ValidationTechnicalProfile ReferenceId="REST-CheckActiveStatus" />
<ValidationTechnicalProfile ReferenceId="AppInsights-CustomSigninActiveCheck">
</ValidationTechnicalProfile>
<ValidationTechnicalProfile ReferenceId="login-NonInteractive">
</ValidationTechnicalProfile>
</ValidationTechnicalProfiles>
<UseTechnicalProfileForSessionManagement ReferenceId="SM-AAD" />
</TechnicalProfile>