Skip to content

Commit 817ab0b

Browse files
authoredFeb 18, 2022
add span processing schema (#130)
* add span processing schema * address review comments
1 parent 3a45bcf commit 817ab0b

File tree

45 files changed

+1466
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1466
-0
lines changed
 

‎hypertrace-graphql-platform/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ dependencies {
1313
api("org.hypertrace.config.service:spaces-config-service-api:0.1.1")
1414
api("org.hypertrace.config.service:labels-config-service-api:0.1.15")
1515
api("org.hypertrace.config.service:label-application-rule-config-service-api:0.1.16")
16+
api("org.hypertrace.config.service:span-processing-config-service-api:0.1.23")
1617
}
1718
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
plugins {
2+
`java-library`
3+
jacoco
4+
id("org.hypertrace.jacoco-report-plugin")
5+
}
6+
7+
dependencies {
8+
api("com.google.inject:guice")
9+
api("com.graphql-java:graphql-java")
10+
api("org.hypertrace.core.graphql:hypertrace-core-graphql-common-schema")
11+
api("org.hypertrace.core.graphql:hypertrace-core-graphql-spi")
12+
api("io.github.graphql-java:graphql-java-annotations")
13+
14+
annotationProcessor("org.projectlombok:lombok")
15+
compileOnly("org.projectlombok:lombok")
16+
17+
implementation(project(":hypertrace-graphql-service-config"))
18+
implementation("org.hypertrace.config.service:span-processing-config-service-api")
19+
implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-context")
20+
implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-grpc-utils")
21+
implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-deserialization")
22+
implementation("org.slf4j:slf4j-api")
23+
implementation("io.reactivex.rxjava3:rxjava")
24+
}

0 commit comments

Comments
 (0)