Skip to content

Commit e44f0bc

Browse files
authored
Fix blocking issues
1 parent dfbff71 commit e44f0bc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-functions/opentelemetry-howto.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Examples in this article assume your app is using `IHostApplicationBuilder`, whi
104104
```
105105
---
106106
107-
1. In your Program.cs project file, add this `using` statement:
107+
2. In your Program.cs project file, add this `using` statement:
108108
109109
### [Application Insights](#tab/app-insights)
110110
@@ -120,7 +120,7 @@ Examples in this article assume your app is using `IHostApplicationBuilder`, whi
120120
121121
---
122122
123-
1. The way that you configure OpenTelemetry depends if your project startup uses `IHostBuilder` or `IHostApplicationBuilder`, which was introduced in v2.x of the .NET isolated worker model extension.
123+
3. The way that you configure OpenTelemetry depends if your project startup uses `IHostBuilder` or `IHostApplicationBuilder`, which was introduced in v2.x of the .NET isolated worker model extension.
124124
125125
### [IHostApplicationBuilder](#tab/ihostapplicationbuilder/app-insights)
126126
@@ -207,7 +207,7 @@ Examples in this article assume your app is using `IHostApplicationBuilder`, whi
207207
</dependency>
208208
```
209209
210-
### [Kotlin](#tab/maven/otlp-export)
210+
### [Kotlin](#tab/kotlin/otlp-export)
211211
212212
```kotlin
213213
implementation("com.microsoft.azure.functions:azure-functions-java-opentelemetry:1.0.0")
@@ -272,7 +272,7 @@ Examples in this article assume your app is using `IHostApplicationBuilder`, whi
272272
273273
---
274274
275-
1. Update the `main` field in your package.json file to include this new `src/index.js` file, which might look like this:
275+
2. Update the `main` field in your package.json file to include this new `src/index.js` file, which might look like this:
276276
277277
```json
278278
"main": "src/{index.js,functions/*.js}"
@@ -291,7 +291,7 @@ Examples in this article assume your app is using `IHostApplicationBuilder`, whi
291291
292292
---
293293
294-
1. Update the `main` field in your package.json file to include the output of this new `src/index.ts` file, which might look like this:
294+
2. Update the `main` field in your package.json file to include the output of this new `src/index.ts` file, which might look like this:
295295
296296
```json
297297
"main": "dist/src/{index.js,functions/*.js}"

0 commit comments

Comments
 (0)