-
-
Notifications
You must be signed in to change notification settings - Fork 301
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
Add support for Micrometer's Observation API #646
Comments
You might want to consider using the Observation API so that you can get Metrics and Tracing (and any other arbitrary thing that users need/want to implement): https://micrometer.io/docs/observation |
@jonatan-ivanov thanks for a hint. Would you like to contribute it maybe?🙂 |
I would but in the next few months I'm not sure I will be able to do it. Let me talk to the rest of the team to see if we can prioritize this. |
Just stumbled on this after 2 days of examining the code and trying to figure out a solution for, at least, propagating the trace through SQS to keep log aggregation for the entire logical operation... In this short venture in the code I concluded there are two points for integration:
Does that sound like I'm on the right path or am I missing something? |
Hey @nikola-djuran, I looked into this recently and documented my solution here: This seems to work well. I'm currently working on the migration from 2.4 to 3.0 and this was a crucial thing for us too. |
Hi @jkuipers thanks for reaching out and sharing this. I just looked at it and it seems like that's the think I'm trying to figure out as well. Looked at most of the classes you're working with(apart from Brave specific), however I'm trying to do it with the Micrometer Tracing API, to abstract Brave if possible. :) If you're still working with this, take a look at the classes I mentioned above...I might be wrong, but they seem to pin-point the integration parts. Not that your approach is invalid, I'm just a fan of changing as little as possible if there is a place in the framework for it than re-declaring higher level beans. I feel like there's much more that can go wrong that way 😅 . |
What do you think about:
|
Definitely agree with the idea! That would be the most sensible solution, I was just trying to get a hint how to implement a short term solution that would cover the tracing part until this goes into a release. |
About instrumenting the SDK instead: even though that sounds nice, I'm wondering if it would work with all the work that's performed using CompletableFutures in Spring Cloud AWS. To me it wasn't very clear when I looked at the code where thread-switching might occur. That's one of the reasons I chose the extension points I'm currently using: for those I'm sure that the work happens on the correct thread. |
Hi there, We are working on a project where we need to trace all messages once consumed from SQS. We are attempting to add the tracing context to the messages as shown below:
and when receive the message,
Our question is: Is there a way to integrate OpenTelemetry (otel) instead of using our own Propagator.Getter? We are looking for a working example, possibly leveraging this OpenTelemetry AWS SDK instrumentation. |
Fyi: since Micrometer Tracing supports OTel, if SQS would be instrumented with the Observation API, OTel would work too. |
I can't speak for Off the top of my head, while the async / threading nature of the integration has its challenges and it's hard to give strong guarantees for large chunks of code, basically it'll only hop threads when doing some So we do have some control we should be able to leverage in keeping any necessary context. Another option, and perhaps a more idiomatic way to pass this kind of metadata along in a Messaging framework, would be using |
@maciejwalkowiak Would you mind renaming this issue for something like "Add support for Micrometer's Observation API"? |
@jonatan-ivanov done! |
Is there still plans to do this? Do you need help implementing it? |
Hey @0x006EA1E5, yup, PRs are definitely welcome. |
Hi, I am working on it and plan to deliver a PR in the upcoming days. |
hey @sondemar are you just working on SQS? Do you intend adding a general |
Hi @0x006EA1E5 yes, I am working on SQS processing as described in the following issue. Regarding the |
Also #566
The text was updated successfully, but these errors were encountered: