File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
spring-ai-docs/src/main/antora/modules/ROOT/pages/observability Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 22= Observability
33
44Spring AI builds upon the observability features in the Spring ecosystem to provide insights into AI-related operations.
5+
6+ The spring-boot-actuator module is required for enabling observability.
7+ Add the Spring Boot Actuator dependency to your project's Maven `pom.xml` build file:
8+
9+ [source,xml]
10+ ----
11+ <dependency>
12+ <groupId>org.springframework.boot</groupId>
13+ <artifactId>spring-boot-starter-actuator</artifactId>
14+ </dependency>
15+ ----
16+
17+ or to your Gradle `build.gradle` build file.
18+
19+ [source,groovy]
20+ ----
21+ dependencies {
22+ implementation 'org.springframework.boot:spring-boot-starter-actuator'
23+ }
24+ ----
25+
526Spring AI provides metrics and tracing capabilities for its core components: `ChatClient` (including `Advisor`),
627`ChatModel`, `EmbeddingModel`, `ImageModel`, and `VectorStore`.
728
You can’t perform that action at this time.
0 commit comments