-
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
chore(api-server): pass extensions context to rest endpoints #10094
chore(api-server): pass extensions context to rest endpoints #10094
Conversation
When using `AddFieldFromCtx` in `HandleError` function we were passing fresh, empty context. Because of that whenever logger had custom `FromSpanLogValuesProcessorContext` passed, it was ignored. Now we are passing runtime extension context to all endpoint handlers which then are using `HandleFunction`, which allows us to provide in example mapper of OTEL trace ids to Datadog. Signed-off-by: Bart Smykla <[email protected]>
Signed-off-by: Bart Smykla <[email protected]>
41f817d
to
328cf04
Compare
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.
Not really sure about this one, shouldn't we prioritise #8216 ? could slog provide a better approach here?
@@ -40,6 +40,7 @@ var _ = Describe("Tokens Client", func() { | |||
&zoneStaticTokenIssuer{}, | |||
access.NoopDpTokenAccess{}, | |||
zone_access.NoopZoneTokenAccess{}, | |||
context.Background(), |
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.
isn't context the first parameter by design in go?
} | ||
if host == "127.0.0.1" || host == "::1" { | ||
log.V(1).Info("authenticated as admin because requests originates from the same machine") | ||
request.Request = request.Request.WithContext(user.Ctx(request.Request.Context(), user.Admin.Authenticated())) //nolint:contextcheck |
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.
why does this suddenly need a nolint?
Yeah, I also don't like it. Let me see if I could do something with #8216 |
When using
AddFieldFromCtx
inHandleError
function we were passing fresh, empty context. Because of that whenever logger had customFromSpanLogValuesProcessorContext
passed, it was ignored. Now we are passing runtime extension context to all endpoint handlers which then are usingHandleError
, which allows us to provide in example mapper of OTEL trace ids to Datadog.Checklist prior to review
syscall.Mkfifo
have equivalent implementation on the other OSci/
labels to run additional/fewer testsUPGRADE.md
?