File tree Expand file tree Collapse file tree 1 file changed +4
-20
lines changed Expand file tree Collapse file tree 1 file changed +4
-20
lines changed Original file line number Diff line number Diff line change @@ -133,9 +133,7 @@ The way that you instrument your application to use OpenTelemetry depends on you
133
133
134
134
**Core bridge** (always) – enables OpenTelemetry inside the Java worker
135
135
136
- <details open>
137
- <summary>Maven</summary>
138
-
136
+ **Maven**
139
137
```xml
140
138
<dependency>
141
139
<groupId>com.microsoft.azure.functions</groupId>
@@ -144,22 +142,14 @@ The way that you instrument your application to use OpenTelemetry depends on you
144
142
</dependency>
145
143
```
146
144
147
- </details >
148
-
149
- <details >
150
- <summary >Gradle (Kotlin DSL)</summary >
151
-
145
+ ** Gradle (Kotlin DSL)**
152
146
``` kotlin
153
147
implementation(" com.microsoft.azure.functions:azure-functions-java-opentelemetry:1.0.0" )
154
148
```
155
149
156
- </details >
157
-
158
150
** Application Insights exporter** (optional) – add only if you plan to send data to AI
159
151
160
- <details >
161
- <summary >Maven</summary >
162
-
152
+ ** Maven**
163
153
``` xml
164
154
<dependency >
165
155
<groupId >com.azure</groupId >
@@ -168,17 +158,11 @@ implementation("com.microsoft.azure.functions:azure-functions-java-opentelemetry
168
158
</dependency >
169
159
```
170
160
171
- </details >
172
-
173
- <details >
174
- <summary >Gradle (Kotlin DSL)</summary >
175
-
161
+ ** Gradle (Kotlin DSL)**
176
162
``` kotlin
177
163
implementation(" com.azure:azure-monitor-opentelemetry-autoconfigure:1.2.0" )
178
164
```
179
165
180
- </details >
181
-
182
166
> The bridge looks for ` AzureMonitorAutoConfigure ` by reflection; if this dependency isn’t present, it simply skips the AI exporter.
183
167
184
168
---
You can’t perform that action at this time.
0 commit comments