-
Notifications
You must be signed in to change notification settings - Fork 4
feat: Capability to fetch logs along with span #59
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
Conversation
This comment has been minimized.
This comment has been minimized.
Codecov Report
@@ Coverage Diff @@
## main #59 +/- ##
============================================
- Coverage 61.48% 60.86% -0.63%
Complexity 233 233
============================================
Files 77 78 +1
Lines 1171 1183 +12
Branches 33 33
============================================
Hits 720 720
- Misses 423 435 +12
Partials 28 28
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
...ace-core-graphql-span-schema/src/main/java/org/hypertrace/core/graphql/span/schema/Span.java
Show resolved
Hide resolved
...re-graphql-span-schema/src/main/java/org/hypertrace/core/graphql/span/dao/SpanDaoModule.java
Outdated
Show resolved
Hide resolved
...schema/src/main/java/org/hypertrace/core/graphql/span/request/DefaultSpanRequestBuilder.java
Outdated
Show resolved
Hide resolved
...ql-span-schema/src/main/java/org/hypertrace/core/graphql/span/dao/GatewayServiceSpanDao.java
Outdated
Show resolved
Hide resolved
...phql-span-schema/src/main/java/org/hypertrace/core/graphql/span/dao/SpanLogEventFetcher.java
Outdated
Show resolved
Hide resolved
...schema/src/main/java/org/hypertrace/core/graphql/span/request/DefaultSpanRequestBuilder.java
Outdated
Show resolved
Hide resolved
...phql-span-schema/src/main/java/org/hypertrace/core/graphql/span/dao/SpanLogEventFetcher.java
Outdated
Show resolved
Hide resolved
...phql-span-schema/src/main/java/org/hypertrace/core/graphql/span/dao/SpanLogEventFetcher.java
Outdated
Show resolved
Hide resolved
This comment has been minimized.
This comment has been minimized.
...phql-span-schema/src/main/java/org/hypertrace/core/graphql/span/dao/SpanLogEventFetcher.java
Outdated
Show resolved
Hide resolved
...c/main/java/org/hypertrace/core/graphql/atttributes/scopes/HypertraceCoreAttributeScope.java
Outdated
Show resolved
Hide resolved
.../java/org/hypertrace/core/graphql/atttributes/scopes/HypertraceCoreAttributeScopeModule.java
Outdated
Show resolved
Hide resolved
This comment has been minimized.
This comment has been minimized.
...n-schema/src/main/java/org/hypertrace/core/graphql/span/dao/GatewayServiceSpanConverter.java
Outdated
Show resolved
Hide resolved
.../java/org/hypertrace/core/graphql/atttributes/scopes/HypertraceCoreAttributeScopeModule.java
Outdated
Show resolved
Hide resolved
...core-graphql-span-schema/src/test/java/org/hypertrace/core/graphql/span/dao/BaseDaoTest.java
Outdated
Show resolved
Hide resolved
...schema/src/main/java/org/hypertrace/core/graphql/span/dao/SpanLogEventResponseConverter.java
Outdated
Show resolved
Hide resolved
...schema/src/main/java/org/hypertrace/core/graphql/span/dao/SpanLogEventResponseConverter.java
Outdated
Show resolved
Hide resolved
This comment has been minimized.
This comment has been minimized.
|
@aaron-steinfeld for the log and span join to work, the span query must request |
Thanks for bringing that up! I meant to comment on that and it completely slipped my mind. IMO it should be handled internally, but I'm OK deferring that into a separate PR if you want since it strictly relaxes the API contract. The span |
hypertrace/hypertrace#224
In this change, following is done:
Major changes in SpanLogEventFetcher, LogEventAttributeRequestBuilder
Test