We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, ReadWriteLogRecord forces you to make an immutable copy of the data (by calling toLogRecordData()) if you want to access any of the fields.
toLogRecordData()
In cases like the EventToSpanEventBridge, this causes unnecessary allocations in cases where log records are not events.
Let's followup on this long time TODO and add dedicated accessors. Minimally, the ones that are needed for the EventToSpanEventBridge use case.
EventToSpanEventBridge
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, ReadWriteLogRecord forces you to make an immutable copy of the data (by calling
toLogRecordData()
) if you want to access any of the fields.In cases like the EventToSpanEventBridge, this causes unnecessary allocations in cases where log records are not events.
Let's followup on this long time TODO and add dedicated accessors. Minimally, the ones that are needed for the
EventToSpanEventBridge
use case.The text was updated successfully, but these errors were encountered: