Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Observability configuration for Embabel to see GOAP, Tool Loop and Spring AI traces in your observability platform
embabel:
observability:
enabled: true
service-name: embabel-agent-examples-java
# Observability configuration for Spring AI with tracing and logging
# This is a concern of the application, not the library and will be removed in future versions
spring:
ai:
chat:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Observability configuration for Embabel to see GOAP and Spring AI traces in your observability platform
embabel:
observability:
enabled: true
service-name: embabel-agent-examples-kotlin
# Observability configuration for Spring AI with tracing and logging
# This is a concern of the application, not the library and will be removed in future versions
spring:
ai:
chat:
Expand Down
14 changes: 5 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,14 @@
<dependencies>
<!-- ================ Observability ================ -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-tracing-bridge-brave</artifactId>
<groupId>com.embabel.agent</groupId>
<artifactId>embabel-agent-starter-observability</artifactId>
<version>${embabel-agent.version}</version>
</dependency>

<dependency>
<groupId>io.zipkin.reporter2</groupId>
<artifactId>zipkin-reporter-brave</artifactId>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-exporter-zipkin</artifactId>
</dependency>
<!-- ================ Observability ================ -->

Expand Down