Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(prometheus): handle metrics with same name but varying tags. #4

Merged
merged 7 commits into from
Jun 29, 2020
6 changes: 6 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ subprojects { subProject ->
dependencies {
compileOnly 'org.projectlombok:lombok:+'
annotationProcessor 'org.projectlombok:lombok:+'
testCompileOnly 'org.projectlombok:lombok:+'
testAnnotationProcessor 'org.projectlombok:lombok:+'

compileOnly(group: 'org.pf4j', name: 'pf4j', version: "${pf4jVersion}")
compileOnly(group: 'com.netflix.spinnaker.kork', name: 'kork-plugins-api', version: "${korkVersion}")
Expand Down Expand Up @@ -108,6 +110,10 @@ subprojects { subProject ->
testImplementation "com.netflix.spinnaker.kork:kork-plugins-spring-api:$korkVersion"
testImplementation "com.netflix.spinnaker.kork:kork-core:${korkVersion}"
testImplementation "com.netflix.spinnaker.kork:kork-web:${korkVersion}"
testImplementation "org.mock-server:mockserver-client-java:5.10.0"
testImplementation "org.mock-server:mockserver-junit-rule:5.10.0"
testImplementation "org.testcontainers:testcontainers:1.14.3"
testImplementation 'io.rest-assured:rest-assured:4.3.0'
}

group = "io.armory.plugins.metrics"
Expand Down
Loading