Skip to content

Commit 99e98dc

Browse files
author
Rishabh
authored
feat: Add log-event api (mock data) (#80)
1 parent 58aef79 commit 99e98dc

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

hypertrace-core-graphql

hypertrace-graphql-impl/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ dependencies {
2323
implementation(project(":hypertrace-graphql-metric-schema"))
2424
implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-metadata-schema")
2525
implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-span-schema")
26+
implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-log-event-schema")
2627
implementation("org.hypertrace.core.graphql:hypertrace-core-graphql-trace-schema")
2728
implementation(project(":hypertrace-graphql-entity-schema"))
2829
implementation(project(":hypertrace-graphql-explorer-schema"))

hypertrace-graphql-impl/src/main/java/org/hypertrace/graphql/impl/GraphQlModule.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import org.hypertrace.core.graphql.common.utils.attributes.AttributeUtilsModule;
88
import org.hypertrace.core.graphql.context.GraphQlRequestContextModule;
99
import org.hypertrace.core.graphql.deserialization.GraphQlDeserializationRegistryModule;
10+
import org.hypertrace.core.graphql.log.event.LogEventSchemaModule;
1011
import org.hypertrace.core.graphql.metadata.MetadataSchemaModule;
1112
import org.hypertrace.core.graphql.rx.RxUtilModule;
1213
import org.hypertrace.core.graphql.schema.registry.GraphQlSchemaRegistryModule;
@@ -59,6 +60,7 @@ protected void configure() {
5960
install(new AttributeUtilsModule());
6061
install(new MetadataSchemaModule());
6162
install(new SpanSchemaModule());
63+
install(new LogEventSchemaModule());
6264
install(new TraceSchemaModule());
6365
install(new EntitySchemaModule());
6466
install(new ExplorerSchemaModule());

0 commit comments

Comments
 (0)