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

Preserve logger reports through translation by encapculating translated output in report_cb #14380

Merged

Conversation

martosaur
Copy link
Contributor

The thing that is bothering me and that I'm looking for a way to address is the fact that translators are destructive to the report log messages. Most reports don't survive default translator and are replaced with a chardata, but some logger handlers clearly have a demand for the original report data, since they go as far as parsing chardata to build their own report.

One idea I have is that instead of converting report to chardata, translator could wrap the report_cb callback function, since the existing one would be useless after the translation anyway.

Some caveats with this approach:

  1. This can be seen as a breaking change by handlers/formatters. I think technically it's not since translation is an optional filter and the log pipeline in general can be tweaked at any point by the app, but still not very nice.
  2. Not sure if using anonymous functions as report_cb can have any performance implications or run into problems with multi-node setup?
  3. report_cb use is a little different from what translator does right now, so there's probably more changes to make here to make it return format string (?).

In general I would love to get some feedback on if this is the right way to approach this or if there is even a good way 🙏

@josevalim
Copy link
Member

I am happy with this approach, if tests pass. :)

Not sure if using anonymous functions as report_cb can have any performance implications or run into problems with multi-node setup?

Yes, it is a problem. It is probably best to store the translated message in the map or metadata and have a static report_cb that reads that instead. In fact, you may flip the whole thing on its head, translate the message only if the report_cb is called, so you move the translation to inside report_cb. So what you to do is something like this:

report_cb: &__MODULE__.new_report_cb, translator_cb: {translators, old_cb}

@martosaur
Copy link
Contributor Author

Thanks! I like the idea of storing the translated message in metadata and use a static report_cb.

In fact, you may flip the whole thing on its head, translate the message only if the report_cb is called, so you move the translation to inside report_cb. So what you to do is something like this:

I was actually considering something like this at first, but realized midway that one incidental purpose of the translator is to enrich log events with Elixir-specific metadata, such as crash_reason or callers, and that's something that is done as part of the translation. That seems important to me, but maybe there is a way around this?

@josevalim
Copy link
Member

You are right, we cannot do it then. Let's stick to your approach then!

@martosaur
Copy link
Contributor Author

Oh I just realized storing translated message in the metadata isn't the option, as report_cb is meant to be called exclusively on the report itself. But the report is a map/keyword, so it should be possible to store it right there, like you suggested. Unless there is a reason to not do this, I'll try to take this to the finish line then!

@josevalim
Copy link
Member

Go for it!

@martosaur martosaur force-pushed the am-address-destructive-translation branch from 8d34c97 to 00992b0 Compare March 30, 2025 22:39
@martosaur
Copy link
Contributor Author

I made another approach to this and it seems like the problem of presenting translator output (chardata) as report_cb output (format + args) can be addressed by wrapping it in {~c"~ts", [chardata]}. All tests pass, so unless this isn't a good idea, the PR might actually be ready for review and will only be missing docs (changelog entry?)!

@martosaur martosaur marked this pull request as ready for review March 30, 2025 22:46
@martosaur martosaur force-pushed the am-address-destructive-translation branch from 00992b0 to 2159b52 Compare March 30, 2025 23:55
@josevalim josevalim merged commit 884de18 into elixir-lang:main Apr 1, 2025
10 checks passed
@josevalim
Copy link
Member

💚 💙 💜 💛 ❤️

@martosaur martosaur deleted the am-address-destructive-translation branch April 1, 2025 16:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants