Skip to content

Commit 229fb52

Browse files
authored
Merge pull request #201326 from RyanHill-MSFT/issues/93980-application-insights-connection-string
(Azure CXP Community) application insights connection string
2 parents 09a7ee8 + d5380ab commit 229fb52

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

articles/communication-services/quickstarts/includes/telemetry-app-insights-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Initialize a `CommunicationIdentityClient` with your connection string. Learn ho
9393
.buildClient();
9494
```
9595

96-
First, in order to create the span that will allow you to trace the requests in the Azure Monitor, you will have to create an instance of an `AzureMonitorTraceExporter` object. You will need to provide the connection string from your Application Insights Resource.
96+
First, in order to create the span that will allow you to trace the requests in the Azure Monitor, you will have to create an instance of an `AzureMonitorTraceExporter` object. You will need to provide the [connection string](../../../azure-monitor/app/sdk-connection-string.md) from your Application Insights Resource.
9797

9898
```java
9999
AzureMonitorTraceExporter exporter = new AzureMonitorExporterBuilder()

articles/communication-services/quickstarts/includes/telemetry-app-insights-net.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ After the SDK calls have been wrapped with Activities, you can add the OpenTelem
131131

132132
You have the option of defining a dictionary with some resource attributes that will show up in Application Insights.
133133
Then, call `AddSource` and use the same Activity Source name that was defined in `TracedSample`.
134-
You will also need to grab the connection string from your Application Insights resource and pass it to `AddAzureMonitorTraceExporter()`. This will funnel the telemetry data to your Application Insights resource.
134+
You will also need to grab the [connection string](../../../azure-monitor/app/sdk-connection-string.md) from your Application Insights resource and pass it to `AddAzureMonitorTraceExporter()`. This will funnel the telemetry data to your Application Insights resource.
135135

136136
Lastly, call and await the `TracedSample()` function where we have our SDK calls.
137137

articles/communication-services/quickstarts/includes/telemetry-app-insights-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ connection_string = os.environ["COMMUNICATION_SERVICES_CONNECTION_STRING"]
6969
identity_client = CommunicationIdentityClient.from_connection_string(connection_string)
7070
```
7171

72-
First, in order to create the span that will allow you to trace the requests in the Azure Monitor, you will have to create an instance of an `AzureMonitorTraceExporter` object. You will need to provide the connection string from your Application Insights Resource.
72+
First, in order to create the span that will allow you to trace the requests in the Azure Monitor, you will have to create an instance of an `AzureMonitorTraceExporter` object. You will need to provide the [connection string](../../../azure-monitor/app/sdk-connection-string.md) from your Application Insights Resource.
7373

7474
```python
7575
exporter = AzureMonitorTraceExporter.from_connection_string(

0 commit comments

Comments
 (0)