@@ -1384,9 +1384,9 @@ We recommend you use the OpenTelemetry APIs whenever possible, but there might b
1384
1384
1385
1385
##### Events
1386
1386
1387
- 1 . Add ` Microsoft.ApplicationInsights ` to your application:
1387
+ 1 . Add ` Microsoft.ApplicationInsights ` to your application.
1388
1388
1389
- 1 . Create a ` TelemetryClient ` instance.
1389
+ 2 . Create a ` TelemetryClient ` instance.
1390
1390
1391
1391
> [ !NOTE]
1392
1392
> It's important to only create once instance of the TelemetryClient per application.
@@ -1396,7 +1396,7 @@ var telemetryConfiguration = new TelemetryConfiguration { ConnectionString = ""
1396
1396
var telemetryClient = new TelemetryClient (telemetryConfiguration );
1397
1397
```
1398
1398
1399
- 1 . Use the client to send custom telemetry.
1399
+ 3 . Use the client to send custom telemetry.
1400
1400
1401
1401
``` csharp
1402
1402
telemetryClient .TrackEvent (" testEvent" );
@@ -1406,9 +1406,9 @@ telemetryClient.TrackEvent("testEvent");
1406
1406
1407
1407
##### Events
1408
1408
1409
- 1 . Add ` Microsoft.ApplicationInsights ` to your application:
1409
+ 1 . Add ` Microsoft.ApplicationInsights ` to your application.
1410
1410
1411
- 1 . Create a ` TelemetryClient ` instance.
1411
+ 2 . Create a ` TelemetryClient ` instance.
1412
1412
1413
1413
> [ !NOTE]
1414
1414
> It's important to only create once instance of the TelemetryClient per application.
@@ -1418,7 +1418,7 @@ var telemetryConfiguration = new TelemetryConfiguration { ConnectionString = ""
1418
1418
var telemetryClient = new TelemetryClient (telemetryConfiguration );
1419
1419
```
1420
1420
1421
- 1 . Use the client to send custom telemetry.
1421
+ 3 . Use the client to send custom telemetry.
1422
1422
1423
1423
``` csharp
1424
1424
telemetryClient .TrackEvent (" testEvent" );
0 commit comments