Skip to content

Commit 195b648

Browse files
authored
remove details tags
1 parent 5aae57c commit 195b648

File tree

1 file changed

+4
-20
lines changed

1 file changed

+4
-20
lines changed

articles/azure-functions/opentelemetry-howto.md

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,7 @@ The way that you instrument your application to use OpenTelemetry depends on you
133133
134134
**Core bridge** (always) – enables OpenTelemetry inside the Java worker
135135
136-
<details open>
137-
<summary>Maven</summary>
138-
136+
**Maven**
139137
```xml
140138
<dependency>
141139
<groupId>com.microsoft.azure.functions</groupId>
@@ -144,22 +142,14 @@ The way that you instrument your application to use OpenTelemetry depends on you
144142
</dependency>
145143
```
146144

147-
</details>
148-
149-
<details>
150-
<summary>Gradle (Kotlin DSL)</summary>
151-
145+
**Gradle (Kotlin DSL)**
152146
```kotlin
153147
implementation("com.microsoft.azure.functions:azure-functions-java-opentelemetry:1.0.0")
154148
```
155149

156-
</details>
157-
158150
**Application Insights exporter** (optional) – add only if you plan to send data to AI
159151

160-
<details>
161-
<summary>Maven</summary>
162-
152+
**Maven**
163153
```xml
164154
<dependency>
165155
<groupId>com.azure</groupId>
@@ -168,17 +158,11 @@ implementation("com.microsoft.azure.functions:azure-functions-java-opentelemetry
168158
</dependency>
169159
```
170160

171-
</details>
172-
173-
<details>
174-
<summary>Gradle (Kotlin DSL)</summary>
175-
161+
**Gradle (Kotlin DSL)**
176162
```kotlin
177163
implementation("com.azure:azure-monitor-opentelemetry-autoconfigure:1.2.0")
178164
```
179165

180-
</details>
181-
182166
> The bridge looks for `AzureMonitorAutoConfigure` by reflection; if this dependency isn’t present, it simply skips the AI exporter.
183167
184168
---

0 commit comments

Comments
 (0)