Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
Implement monitoring of the Spring Boot app (#62)
Browse files Browse the repository at this point in the history
Author: Ilie Circiumaru <[email protected]>
Issue: //issues/45
Reviewer Paul Wen
  • Loading branch information
iliecirciumaru authored Mar 15, 2022
1 parent 9db2f50 commit 2649a5e
Show file tree
Hide file tree
Showing 7 changed files with 3,328 additions and 2 deletions.
10 changes: 9 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,15 @@
<artifactId>loki-logback-appender</artifactId>
<version>1.3.1</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>

<build>
Expand Down
2 changes: 2 additions & 0 deletions setup/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ LEDGER_REGISTER_DID_ENDPOINT_HOST=http://localhost:9000/register

# Load Generator
LOAD_GENERATOR_WEBHOOK_ENDPOINT=http://load-generator-1:8080/acapy-webhook
SERVER_TOMCAT_THREADS_MAX=200
SERVER_TOMCAT_MAX_CONNECTIONS=8192

# Load Generator: Test Runners
TEST_RUNNERS_MAX_PARALLEL_ITERATIONS_RUNNER_ACTIVE=false
Expand Down
Loading

0 comments on commit 2649a5e

Please sign in to comment.