-
Notifications
You must be signed in to change notification settings - Fork 207
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
new internal model interfaces - #405 #412
Conversation
data-prepper-api/src/main/java/com/amazon/dataprepper/model/event/EventMetadata.java
Show resolved
Hide resolved
data-prepper-api/src/main/java/com/amazon/dataprepper/model/log/Log.java
Show resolved
Hide resolved
data-prepper-api/src/main/java/com/amazon/dataprepper/model/span/SpanEvent.java
Outdated
Show resolved
Hide resolved
data-prepper-api/src/main/java/com/amazon/dataprepper/model/span/Link.java
Outdated
Show resolved
Hide resolved
data-prepper-api/src/main/java/com/amazon/dataprepper/model/span/TraceGroupFields.java
Outdated
Show resolved
Hide resolved
data-prepper-api/src/main/java/com/amazon/dataprepper/model/event/EventMetadata.java
Outdated
Show resolved
Hide resolved
data-prepper-api/src/main/java/com/amazon/dataprepper/model/span/Span.java
Outdated
Show resolved
Hide resolved
data-prepper-api/src/main/java/com/amazon/dataprepper/model/span/Span.java
Outdated
Show resolved
Hide resolved
data-prepper-api/src/main/java/com/amazon/dataprepper/model/event/Event.java
Outdated
Show resolved
Hide resolved
Per our DCO, we require that commits be signed off using your real name. You have:
Please change |
Signed-off-by: cmanning09 <[email protected]>
… increasing dependency versions Signed-off-by: Christopher Manning <[email protected]>
That was an unintentionally deleted pushing the latest version to my forked repo. |
* @return JsonNode of the event | ||
* @since 1.2 | ||
*/ | ||
JsonNode toJsonNode(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As a heads up, this ties us to Jackson for all our implementations. Would String
be a better choice?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yea, a JSON serialized String would be agnostic to other packages. I will address.
Signed-off-by: Christopher Manning <[email protected]>
Signed-off-by: cmanning09 [email protected]
Description
Introducing interfaces for the new internal model. All model objects will have an interface definition to create a contract for all models. Implementations will be provided in follow up PRs.
Issues Resolved
#405
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.