Skip to content

Commit 4b05bfa

Browse files
committed
formatting fixes
1 parent 9e2290f commit 4b05bfa

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

articles/active-directory-b2c/active-directory-b2c-troubleshoot-custom.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -48,33 +48,33 @@ If you don't already have one, create an instance of Application Insights in you
4848
1. If it doesn't already exist, add a `<UserJourneyBehaviors>` child node to the `<RelyingParty>` node. It must be located immediately after `<DefaultUserJourney ReferenceId="UserJourney Id" from your extensions policy, or equivalent (for example:SignUpOrSigninWithAAD" />`.
4949
1. Add the following node as a child of the `<UserJourneyBehaviors>` element. Make sure to replace `{Your Application Insights Key}` with the Application Insights **Instrumentation Key** that you recorded earlier.
5050

51-
```XML
52-
<JourneyInsights TelemetryEngine="ApplicationInsights" InstrumentationKey="{Your Application Insights Key}" DeveloperMode="true" ClientEnabled="false" ServerEnabled="true" TelemetryVersion="1.0.0" />
53-
```
51+
```XML
52+
<JourneyInsights TelemetryEngine="ApplicationInsights" InstrumentationKey="{Your Application Insights Key}" DeveloperMode="true" ClientEnabled="false" ServerEnabled="true" TelemetryVersion="1.0.0" />
53+
```
5454

55-
* `DeveloperMode="true"` tells ApplicationInsights to expedite the telemetry through the processing pipeline. Good for development, but constrained at high volumes.
56-
* `ClientEnabled="true"` sends the ApplicationInsights client-side script for tracking page view and client-side errors. You can view these in the **browserTimings** table in the Application Insights portal. By setting `ClientEnabled= "true"`, you add Application Insights to your page script and you get timings of page loads and AJAX calls, counts, details of browser exceptions and AJAX failures, and user and session counts. This field is **optional**, and is set to `false` by default.
57-
* `ServerEnabled="true"` sends the existing UserJourneyRecorder JSON as a custom event to Application Insights.
55+
* `DeveloperMode="true"` tells ApplicationInsights to expedite the telemetry through the processing pipeline. Good for development, but constrained at high volumes.
56+
* `ClientEnabled="true"` sends the ApplicationInsights client-side script for tracking page view and client-side errors. You can view these in the **browserTimings** table in the Application Insights portal. By setting `ClientEnabled= "true"`, you add Application Insights to your page script and you get timings of page loads and AJAX calls, counts, details of browser exceptions and AJAX failures, and user and session counts. This field is **optional**, and is set to `false` by default.
57+
* `ServerEnabled="true"` sends the existing UserJourneyRecorder JSON as a custom event to Application Insights.
5858

59-
Sample:
59+
For example:
6060

61-
```XML
62-
<TrustFrameworkPolicy
63-
...
64-
TenantId="fabrikamb2c.onmicrosoft.com"
65-
PolicyId="SignUpOrSignInWithAAD"
66-
DeploymentMode="Development"
67-
UserJourneyRecorderEndpoint="urn:journeyrecorder:applicationinsights"
68-
>
61+
```XML
62+
<TrustFrameworkPolicy
63+
...
64+
TenantId="fabrikamb2c.onmicrosoft.com"
65+
PolicyId="SignUpOrSignInWithAAD"
66+
DeploymentMode="Development"
67+
UserJourneyRecorderEndpoint="urn:journeyrecorder:applicationinsights"
68+
>
6969
...
7070
<RelyingParty>
7171
<DefaultUserJourney ReferenceId="UserJourney ID from your extensions policy, or equivalent (for example: SignUpOrSigninWithAzureAD)" />
7272
<UserJourneyBehaviors>
7373
<JourneyInsights TelemetryEngine="ApplicationInsights" InstrumentationKey="{Your Application Insights Key}" DeveloperMode="true" ClientEnabled="false" ServerEnabled="true" TelemetryVersion="1.0.0" />
7474
</UserJourneyBehaviors>
7575
...
76-
</TrustFrameworkPolicy>
77-
```
76+
</TrustFrameworkPolicy>
77+
```
7878

7979
1. Upload the policy.
8080

0 commit comments

Comments
 (0)