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

Implement monitoring of the Spring Boot app #62

Merged
merged 1 commit into from
Mar 15, 2022
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
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