Skip to content

Commit c113baa

Browse files
authored
Merge pull request #84 from iExecBlockchainComputing/feature/enable-prometheus-actuator
Feature/enable prometheus actuator
2 parents 79cd937 + 4fa736f commit c113baa

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@ All notable changes to this project will be documented in this file.
55
## [[NEXT]](https://github.com/iExecBlockchainComputing/iexec-result-proxy/releases/tag/vNEXT) 2023
66

77
### New Features
8+
* Enable Prometheus actuator. (#84)
89
### Bug Fixes
910
* Fix link in changelog. (#83)
1011
### Quality
1112
### Dependency Upgrades
13+
* Upgrade to `expiringmap` 0.5.10. (#84)
1214

1315
## [[8.0.0]](https://github.com/iExecBlockchainComputing/iexec-result-proxy/releases/tag/v8.0.0) 2023-03-03
1416

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ dependencies {
6363
implementation 'org.springframework.cloud:spring-cloud-starter-openfeign'
6464
implementation "org.springframework.retry:spring-retry"
6565

66+
// observability
67+
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
68+
6669
// test
6770
testImplementation('org.springframework.boot:spring-boot-starter-test') {
6871
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
@@ -82,7 +85,7 @@ dependencies {
8285
runtimeOnly "io.jsonwebtoken:jjwt-jackson:$jjwtVersion"
8386

8487
// expiring map
85-
implementation 'net.jodah:expiringmap:0.5.8'
88+
implementation 'net.jodah:expiringmap:0.5.10'
8689
}
8790

8891
dependencyManagement {

0 commit comments

Comments
 (0)