diff options
author | joffrey-bion <joffrey.bion@gmail.com> | 2020-12-05 18:42:06 +0100 |
---|---|---|
committer | joffrey-bion <joffrey.bion@gmail.com> | 2020-12-05 18:42:06 +0100 |
commit | 3563c975492da066032815ca279a1309b5562db2 (patch) | |
tree | 39ed9c77fda90ad4c8c43050161f5e5b4cb7fbc1 /sw-server/build.gradle.kts | |
parent | Hide more expensive transaction options by default (diff) | |
download | seven-wonders-3563c975492da066032815ca279a1309b5562db2.tar.gz seven-wonders-3563c975492da066032815ca279a1309b5562db2.tar.bz2 seven-wonders-3563c975492da066032815ca279a1309b5562db2.zip |
Enable actuator and prometheus metrics
Diffstat (limited to 'sw-server/build.gradle.kts')
-rw-r--r-- | sw-server/build.gradle.kts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sw-server/build.gradle.kts b/sw-server/build.gradle.kts index 3d2c3477..0b3e9482 100644 --- a/sw-server/build.gradle.kts +++ b/sw-server/build.gradle.kts @@ -20,8 +20,13 @@ dependencies { // required by spring security when using websockets implementation("org.springframework.security:spring-security-messaging") + // logging implementation("ch.qos.logback:logback-classic:1.1.8") + // monitoring / metrics + implementation("org.springframework.boot:spring-boot-starter-actuator") + implementation("io.micrometer:micrometer-registry-prometheus:1.6.1") + testImplementation(kotlin("test")) testImplementation(kotlin("test-junit")) testImplementation(project(":sw-client")) |