Skip to content

Commit b918a8f

Browse files
Merge pull request #298445 from bernawy/patch-56
Replaced InstrumentationKey with ConnectionString
2 parents 256899b + abf376c commit b918a8f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/active-directory-b2c/relyingparty.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: CelesteDG
88
ms.service: azure-active-directory
99

1010
ms.topic: reference
11-
ms.date: 03/21/2025
11+
ms.date: 04/17/2025
1212
ms.author: kengaderdus
1313
ms.subservice: b2c
1414

@@ -46,7 +46,7 @@ The following example shows a **RelyingParty** element in the *B2C_1A_signup_sig
4646
<SingleSignOn Scope="Tenant" KeepAliveInDays="7"/>
4747
<SessionExpiryType>Rolling</SessionExpiryType>
4848
<SessionExpiryInSeconds>900</SessionExpiryInSeconds>
49-
<JourneyInsights TelemetryEngine="ApplicationInsights" InstrumentationKey="your-application-insights-key" DeveloperMode="true" ClientEnabled="false" ServerEnabled="true" TelemetryVersion="1.0.0" />
49+
<JourneyInsights TelemetryEngine="ApplicationInsights" ConnectionString="your-application-insights-connection-string" DeveloperMode="true" ClientEnabled="false" ServerEnabled="true" TelemetryVersion="1.0.0" />
5050
<ContentDefinitionParameters>
5151
<Parameter Name="campaignId">{OAUTH-KV:campaignId}</Parameter>
5252
</ContentDefinitionParameters>
@@ -143,7 +143,7 @@ The **UserJourneyBehaviors** element contains the following elements:
143143
| SingleSignOn | 0:1 | The scope of the single sign-on (SSO) session behavior of a user journey. |
144144
| SessionExpiryType |0:1 | The authentication behavior of the session. Possible values: `Rolling` or `Absolute`. The `Rolling` value (default) indicates that the user remains signed in as long as the user is continually active in the application. The `Absolute` value indicates that the user is forced to reauthenticate after the time period specified by application session lifetime. |
145145
| SessionExpiryInSeconds | 0:1 | The lifetime of Azure AD B2C's session cookie specified as an integer stored on the user's browser upon successful authentication. The default is 86,400 seconds (24 hours). The minimum is 900 seconds (15 minutes). The maximum is 86,400 seconds (24 hours). |
146-
| JourneyInsights | 0:1 | The Azure Application Insights instrumentation key to be used. |
146+
| JourneyInsights | 0:1 | The Azure Application Insights connection string to be used. |
147147
| ContentDefinitionParameters | 0:1 | The list of key value pairs to be appended to the content definition load URI. |
148148
| JourneyFraming | 0:1| Allows the user interface of this policy to be loaded in an iframe. |
149149
| ScriptExecution| 0:1| The supported [JavaScript](javascript-and-page-layout.md) execution modes. Possible values: `Allow` or `Disallow` (default).
@@ -168,7 +168,7 @@ The **JourneyInsights** element contains the following attributes:
168168
| Attribute | Required | Description |
169169
| --------- | -------- | ----------- |
170170
| TelemetryEngine | Yes | The value must be `ApplicationInsights`. |
171-
| InstrumentationKey | Yes | The string that contains the instrumentation key for the application insights element. |
171+
| ConnectionString | Yes | The string that contains the connection string for the application insights element. |
172172
| DeveloperMode | Yes | Possible values: `true` or `false`. If `true`, Application Insights expedites the telemetry through the processing pipeline. This setting is good for development, but constrained at high volumes. The detailed activity logs are designed only to aid in development of custom policies. Do not use development mode in production. Logs collect all claims sent to and from the identity providers during development. If used in production, the developer assumes responsibility for personal data collected in the App Insights log that they own. These detailed logs are only collected when this value is set to `true`.|
173173
| ClientEnabled | Yes | Possible values: `true` or `false`. If `true`, sends the Application Insights client-side script for tracking page view and client-side errors. |
174174
| ServerEnabled | Yes | Possible values: `true` or `false`. If `true`, sends the existing UserJourneyRecorder JSON as a custom event to Application Insights. |
@@ -343,4 +343,4 @@ The following example shows how to define a SAML relying party. The subject name
343343
<SubjectNamingInfo ClaimType="sub" Format="urn:oasis:names:tc:SAML:2.0:nameid-format:transient"/>
344344
</TechnicalProfile>
345345
</RelyingParty>
346-
```
346+
```

0 commit comments

Comments
 (0)