Skip to content

Commit f146944

Browse files
author
Robert Winkler
committed
Added OpenTelemetry Support
1 parent 12943c4 commit f146944

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

kotlin-wot-integration-tests/src/main/resources/application.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
spring:
2+
application:
3+
name: chat-agent # Service name for tracing (appears in Langfuse UI as the source service)
4+
5+
management:
6+
tracing:
7+
sampling:
8+
probability: 1.0 # Sample 100% of requests for full tracing (adjust in production as needed)
9+
observations:
10+
annotations:
11+
enabled: true # Enable @Observed (if you use observation annotations in code)
12+
13+
otel:
14+
exporter:
15+
otlp:
16+
endpoint: http://localhost:4318
17+
logging:
18+
enabled: true
19+
propagators:
20+
- tracecontext
21+
instrumentation:
22+
micrometer:
23+
enabled: true
24+
125
arc:
226
ai:
327
clients:

0 commit comments

Comments
 (0)