Skip to content

Commit

Permalink
cid-2963 Adds /actuator/health endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredo-mfaria committed Nov 25, 2024
1 parent 4e23579 commit c192c79
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ The SAP LeanIX agent discovers self-built software in self-hosted GitHub Enterpr

This command starts the agent and exposes it on port 8000. The agent starts scanning your organizations and repositories.


6. The container hosts a live service that runs continuously.
- It provides a health endpoint at `/actuator/health`, which can be used to monitor the service's health.
**Note**: The Docker image for the agent is currently unavailable. It will become available for download once a new version is released. Please check the [Releases](https://github.com/leanix/leanix-github-agent/releases) page for updates.
## Support and Feedback
Expand Down
7 changes: 7 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ dependencyManagement {

dependencies {
implementation("org.springframework.boot:spring-boot-starter")
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-cache")
implementation("com.github.ben-manes.caffeine:caffeine:2.8.8")
implementation("org.springframework.cloud:spring-cloud-starter-openfeign")
Expand All @@ -42,6 +43,12 @@ dependencies {
implementation("com.fasterxml.jackson.core:jackson-annotations:2.17.1")
implementation("com.expediagroup:graphql-kotlin-spring-client:7.0.2")

developmentOnly("io.netty:netty-resolver-dns-native-macos:4.1.85.Final") {
artifact {
classifier = "osx-aarch_64"
}
}

// Dependencies for generating JWT token
implementation("io.jsonwebtoken:jjwt-impl:0.11.2")
implementation("io.jsonwebtoken:jjwt-jackson:0.11.2")
Expand Down

0 comments on commit c192c79

Please sign in to comment.