Skip to content

Commit e11f3ef

Browse files
committed
Small fix to custom events code samples sections
1 parent 6cc5e40 commit e11f3ef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-monitor/app/opentelemetry-add-modify.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1386,7 +1386,7 @@ We recommend you use the OpenTelemetry APIs whenever possible, but there might b
13861386

13871387
1. Add `Microsoft.ApplicationInsights` to your application.
13881388

1389-
1. Create a `TelemetryClient` instance.
1389+
2. Create a `TelemetryClient` instance.
13901390

13911391
> [!NOTE]
13921392
> It's important to only create once instance of the TelemetryClient per application.
@@ -1396,7 +1396,7 @@ var telemetryConfiguration = new TelemetryConfiguration { ConnectionString = ""
13961396
var telemetryClient = new TelemetryClient(telemetryConfiguration);
13971397
```
13981398

1399-
1. Use the client to send custom telemetry.
1399+
3. Use the client to send custom telemetry.
14001400

14011401
```csharp
14021402
telemetryClient.TrackEvent("testEvent");
@@ -1408,7 +1408,7 @@ telemetryClient.TrackEvent("testEvent");
14081408

14091409
1. Add `Microsoft.ApplicationInsights` to your application.
14101410

1411-
1. Create a `TelemetryClient` instance.
1411+
2. Create a `TelemetryClient` instance.
14121412

14131413
> [!NOTE]
14141414
> It's important to only create once instance of the TelemetryClient per application.
@@ -1418,7 +1418,7 @@ var telemetryConfiguration = new TelemetryConfiguration { ConnectionString = ""
14181418
var telemetryClient = new TelemetryClient(telemetryConfiguration);
14191419
```
14201420

1421-
1. Use the client to send custom telemetry.
1421+
3. Use the client to send custom telemetry.
14221422

14231423
```csharp
14241424
telemetryClient.TrackEvent("testEvent");

0 commit comments

Comments
 (0)