-
Notifications
You must be signed in to change notification settings - Fork 887
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
JAVA-3148: Implementing OpenTelemetry for Observability #2021
base: 4.x
Are you sure you want to change the base?
Conversation
Co-authored-by: Andrew Tolbert <6889771+tolbertam@users.noreply.github.com>
…documentation, test
} | ||
|
||
@Nullable | ||
private Field getProxyAddressField() { |
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.
We should not need to do that on our own code base. AFAIK, we should just add getter in SniEndPoint
.
public OtelRequestTracker(OpenTelemetry openTelemetry) { | ||
this.tracer = | ||
openTelemetry.getTracer("com.datastax.oss.driver.internal.core.tracker.OtelRequestTracker"); | ||
this.threadPool = |
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 would add thread pool as optional constructor parameter. There are multiple parameters that may vary between applications.
On top of #1949
We need to merge that one first before we merge this one.
Here is an example system using this branch. We should find a better place to put that project than under my name.