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

Consider renaming the tracer logger to improve clarity #950

Closed
yeikel opened this issue Feb 24, 2025 · 5 comments
Closed

Consider renaming the tracer logger to improve clarity #950

yeikel opened this issue Feb 24, 2025 · 5 comments
Labels

Comments

@yeikel
Copy link

yeikel commented Feb 24, 2025

As per the logs: https://www.elastic.co/guide/en/elasticsearch/client/java-api-client/current/java-rest-low-usage-logging.html#_trace_logs

To enable the "Tracer" logs, one needs to change the log levels of the "tracer" log name such as

<logger name="tracer" level="TRACE" additivity="false">
    <appender-ref ref="your_appender_block_name" />
</logger> 

In my opinion, the name "tracer" was a poor choice because it does not link back to Elasticsearch in any way. The "tracer" term may conflict with other projects as well which may not be desired

I always see myself linking back to https://www.elastic.co/guide/en/elasticsearch/client/java-api-client/current/java-rest-low-usage-logging.html to explain what this does

@yeikel yeikel changed the title Consider renaming the "Tracer" logger Consider renaming the "tracer" logger Feb 24, 2025
@yeikel yeikel changed the title Consider renaming the "tracer" logger Consider renaming the "tracer" logger to improve clarity Feb 24, 2025
@yeikel yeikel changed the title Consider renaming the "tracer" logger to improve clarity Consider renaming the tracer logger to improve clarity Feb 24, 2025
@l-trotta
Copy link
Contributor

l-trotta commented Mar 5, 2025

Hey @yeikel! The log configuration is something that the java clients inherits from the elasticsearch server code through the RestClient (the low level transport client), so we currently don't have a way of changing it. When we'll stop using the server's RestClient (hopefully soon!) we'll be able to name the logs how we want - accepting suggestions!

@yeikel
Copy link
Author

yeikel commented Apr 2, 2025

Hey @yeikel! The log configuration is something that the java clients inherits from the elasticsearch server code through the RestClient (the low level transport client), so we currently don't have a way of changing it. When we'll stop using the server's RestClient (hopefully soon!) we'll be able to name the logs how we want - accepting suggestions!

Thank you for the context.

I noticed that the issue was closed. Could you clarify what changed?

@l-trotta
Copy link
Contributor

l-trotta commented Apr 3, 2025

We merged #974 which adds (in the next major version of the client) a new, alternative implementation of the RestClient where we have changed the name of the tracer logger:

private static final Log tracer = LogFactory.getLog(Request.class);

@yeikel
Copy link
Author

yeikel commented Apr 3, 2025

We merged #974 which adds (in the next major version of the client) a new, alternative implementation of the RestClient where we have changed the name of the tracer logger:

private static final Log tracer = LogFactory.getLog(Request.class);

Thank you for the context

Is that new major version of the client expected soon?

@l-trotta
Copy link
Contributor

l-trotta commented Apr 3, 2025

pretty soon 👀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants