Skip to content
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

Conversation

bartsmykla
Copy link
Contributor

@bartsmykla bartsmykla commented Apr 26, 2024

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 HandleError, which allows us to provide in example mapper of OTEL trace ids to Datadog.

Checklist prior to review

  • Link to relevant issue as well as docs and UI issues
  • This will not break child repos: it doesn't hardcode values (.e.g "kumahq" as a image registry) and it will work on Windows, system specific functions like syscall.Mkfifo have equivalent implementation on the other OS
    • It won't
  • Tests (Unit test, E2E tests, manual test on universal and k8s)
    • Don't forget ci/ labels to run additional/fewer tests
  • Do you need to update UPGRADE.md?
    • There is no need
  • Does it need to be backported according to the backporting policy? (this GH action will add "backport" label based on these file globs, if you want to prevent it from adding the "backport" label use no-backport-autolabel label)
    • There is no need

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]>
@bartsmykla bartsmykla added the kind/service-review Service review issue label Apr 26, 2024
@bartsmykla bartsmykla requested a review from slonka April 26, 2024 08:24
@bartsmykla bartsmykla requested a review from a team as a code owner April 26, 2024 08:24
@bartsmykla bartsmykla requested review from jakubdyszkiewicz and lobkovilya and removed request for a team April 26, 2024 08:24
@bartsmykla bartsmykla force-pushed the chore/pass-extensions-context-to-rest-endpoints branch from 41f817d to 328cf04 Compare April 26, 2024 08:30
@bartsmykla bartsmykla removed the kind/service-review Service review issue label Apr 26, 2024
Copy link
Contributor

@slonka slonka left a 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(),
Copy link
Contributor

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
Copy link
Contributor

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?

@bartsmykla
Copy link
Contributor Author

Yeah, I also don't like it. Let me see if I could do something with #8216

@bartsmykla bartsmykla closed this Apr 26, 2024
@bartsmykla bartsmykla deleted the chore/pass-extensions-context-to-rest-endpoints branch May 6, 2024 07:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants