-
Notifications
You must be signed in to change notification settings - Fork 932
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
Proposal: Adding messaging publish(send) and process wrapper API and matched instrumentation. #13340
Comments
I agree that this feels like it is not a java-specific concern. This might be better brought up in the spec? |
@breedx-splk Thank you for your reminder! We would like to discuss the feasibility of implementing this in Java first, taking a bottom-up approach, before advocating in the spec. Since I am not sufficiently familiar with the implementations in other languages, I can discuss this issue in the spec if you think it is necessary. Additionally, we currently have a relatively urgent need for this type of API in Java, so we aim to develop a prototype first. Before the spec accepts this proposal, if the relevant implementation cannot appear in the OTel Java repository, could it be implemented in the OTel Java Contrib repository first? cc @trask |
thanks @Cirilla-zmh! this sounds like:
|
this makes sense to me 👍 |
Here's a prototype: https://github.com/open-telemetry/opentelemetry-java-contrib/pull/1803/files |
Is your feature request related to a problem? Please describe.
As we know, there are various message-based communication frameworks used by developers, such as Kafka clients, RabbitMQ, Apache EMQ, and even Redisson. The differences in their designs of message model, transmission, and APIs are so significant that we can hardly instrument them all with OTel Java Instrumentation in a seamless manner, unless users manually instrument them with the OpenTelemetry API.
However, many users want to trace their messages with minimal code changes and dependencies. Vendors providing OTel instrumentation distributions may need to capture the entire message transmission process in order to aggregate the data into metrics or build standard tools (dashboards, alerts, etc.). Therefore, we should consider offering a standardized instrumented solution for all of these scenarios.
Describe the solution you'd like
According to our research, there are four types of issues that complicate the instrumentation of messaging frameworks. From difficult to simple, we can list the following:
If applications are built with frameworks in above modes, we cannot capture all messaging operations only with OTel Java Instrumentation, especially the most significant operations - "publish" and "process".
Our proposal is that, since we can't always find suitable tracking points, why not provide a standard API or even annotations to identify these two processes, like this (this is just a preliminary idea):
Adding such a standard API, rather than adopting a universal approach with the OTel API, makes sense for the following reasons:
Describe alternatives you've considered
No response
Additional context
In fact, we believe this is a common issue that affects more than just Java. We hope to begin our efforts in Java first and then expand to other languages. If you have any other suggestions, welcome to join the discussion. ;)
The text was updated successfully, but these errors were encountered: