-
Notifications
You must be signed in to change notification settings - Fork 340
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
fix(api-server): fix trace/span ID processing in logs #10100
Merged
slonka
merged 2 commits into
kumahq:master
from
bartsmykla:fix/trace-span-ids-processing-in-endpoint-handlers-logs
May 6, 2024
Merged
fix(api-server): fix trace/span ID processing in logs #10100
slonka
merged 2 commits into
kumahq:master
from
bartsmykla:fix/trace-span-ids-processing-in-endpoint-handlers-logs
May 6, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Problem: Currently, processing trace/span IDs before logging them (e.g., converting them to Datadog format) requires calling `NewSpanLogValuesProcessorContext` with the `runtime.Extensions()` context. However, this context isn't always available, particularly when handling errors in REST endpoint handlers through `AddFieldsFromCtx`. This inconsistency leads to the processing function being ignored. Proposed Solutions: - Pass `runtime.Extensions()` Context to `HandleError`: While effective, this approach adds significant boilerplate code and requires disabling the `contextcheck` linter in multiple locations (see PR 10094). - Leverage slog's Contextual Logging (ref issue 8216): This approach offers cleaner code but requires significant changes to our logging infrastructure (ones which I immediately faced when tried to do a quick POC): - slog lacks the concept of logger names, necessitating a custom `slog.Handler` for maintaining desired log structure. - We'd need to abandon using globally configured/named loggers or potentially introduce deferred logger initialization logic for slog. Current Solution (For This PR): To address the issue without a major logging overhaul, this PR proposes a simpler solution: - Pass the logger instance through the context when constructing ApiServer. - Restore the logger from the context in `HandleError` function. This approach, while not ideal due to the passing logger via context, effectively resolves the problem without introducing complex logging changes. Additional changes: I adjusted the signature of `NewApiServer` function to accept the whole `runtime.Runtime`, which reduced significantly the amount of necessary arguments, which were attained from the `runtime.Runtime`. It makes `contextcheck` linter happy as we don't have to pass `runtime.Extensions()` context as an argument, which linter would flag as passed and not used, without realising it's not the regular context. Signed-off-by: Bart Smykla <[email protected]>
Signed-off-by: Bart Smykla <[email protected]>
slonka
approved these changes
Apr 29, 2024
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.
I'm approving this but I might be biased, I'll let someone else also review this
michaelbeaumont
approved these changes
May 6, 2024
lobkovilya
pushed a commit
that referenced
this pull request
May 15, 2024
* fix(api-server): fix trace/span ID processing in logs Problem: Currently, processing trace/span IDs before logging them (e.g., converting them to Datadog format) requires calling `NewSpanLogValuesProcessorContext` with the `runtime.Extensions()` context. However, this context isn't always available, particularly when handling errors in REST endpoint handlers through `AddFieldsFromCtx`. This inconsistency leads to the processing function being ignored. Proposed Solutions: - Pass `runtime.Extensions()` Context to `HandleError`: While effective, this approach adds significant boilerplate code and requires disabling the `contextcheck` linter in multiple locations (see PR 10094). - Leverage slog's Contextual Logging (ref issue 8216): This approach offers cleaner code but requires significant changes to our logging infrastructure (ones which I immediately faced when tried to do a quick POC): - slog lacks the concept of logger names, necessitating a custom `slog.Handler` for maintaining desired log structure. - We'd need to abandon using globally configured/named loggers or potentially introduce deferred logger initialization logic for slog. Current Solution (For This PR): To address the issue without a major logging overhaul, this PR proposes a simpler solution: - Pass the logger instance through the context when constructing ApiServer. - Restore the logger from the context in `HandleError` function. This approach, while not ideal due to the passing logger via context, effectively resolves the problem without introducing complex logging changes. Additional changes: I adjusted the signature of `NewApiServer` function to accept the whole `runtime.Runtime`, which reduced significantly the amount of necessary arguments, which were attained from the `runtime.Runtime`. It makes `contextcheck` linter happy as we don't have to pass `runtime.Extensions()` context as an argument, which linter would flag as passed and not used, without realising it's not the regular context. Signed-off-by: Bart Smykla <[email protected]> * chore: add missing test.Runtime.Extensions() Signed-off-by: Bart Smykla <[email protected]> --------- Signed-off-by: Bart Smykla <[email protected]> Signed-off-by: Ilya Lobkov <[email protected]>
5 tasks
michaelbeaumont
added a commit
that referenced
this pull request
Jun 4, 2024
We can't rely on the filter added in #10100 because we don't have the tenant at that point. Signed-off-by: Mike Beaumont <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem:
Currently, processing trace/span IDs before logging them (e.g., converting them to Datadog format) requires calling
NewSpanLogValuesProcessorContext
with theruntime.Extensions()
context. However, this context isn't always available, particularly when handling errors in REST endpoint handlers throughAddFieldsFromCtx
. This inconsistency leads to the processing function being ignored.Proposed Solutions:
Pass
runtime.Extensions()
Context toHandleError
: While effective, this approach adds significant boilerplate code and requires disabling thecontextcheck
linter in multiple locations (see PR chore(api-server): pass extensions context to rest endpoints #10094).Leverage slog's Contextual Logging (ref: rework AddFieldsFromCtx to be less combersome #8216): This approach offers cleaner code but requires significant changes to our logging infrastructure (ones which I immediately faced when tried to do a quick POC):
slog.Handler
for maintaining desired log structure.Current Solution (For This PR):
To address the issue without a major logging overhaul, this PR proposes a simpler solution:
HandleError
function.This approach, while not ideal due to the passing logger via context, effectively resolves the problem without introducing complex logging changes.
Additional changes:
I adjusted the signature of
NewApiServer
function to accept the wholeruntime.Runtime
, which reduced significantly the amount of necessary arguments, which were attained from theruntime.Runtime
. It makescontextcheck
linter happy as we don't have to passruntime.Extensions()
context as an argument, which linter would flag as passed and not used, without realising it's not the regular context.Checklist prior to review
syscall.Mkfifo
have equivalent implementation on the other OSci/
labels to run additional/fewer testsUPGRADE.md
?