-
I found in documentation this line:
I tried this exporter and see that it generates online one event that I can see on Ubuntu as Am I wrong? Is there better way to work with OTLP metrics using perf ? thank you |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
If you are looking for ways to capture the user_events, and deserialize into OTLP structs, you can refer to setup here - https://github.com/open-telemetry/opentelemetry-rust-contrib/blob/main/opentelemetry-user-events-metrics/local-setup/cloud-init.yaml. |
Beta Was this translation helpful? Give feedback.
-
tbh, I hopped to see my metrics in realtime, so that I start perf tool can see those metrics. I'm very newbie to this topic and my wish might be too silly, but that is what I would like to get. Can you recommend something that covers this two use cases? is approach with user_events suitable at all? |
Beta Was this translation helpful? Give feedback.
-
You need to create your custom reader to read and decode the user_events in real time. |
Beta Was this translation helpful? Give feedback.
-
so, I need custom reader for both realtime and non-realtime processing, right? |
Beta Was this translation helpful? Give feedback.
-
Yes, the perf tool is only for validation and troubleshooting, not something you can use as a real-time receiver. For non-realtime yes, please refer to link I shared how to do that. |
Beta Was this translation helpful? Give feedback.
Yes, the perf tool is only for validation and troubleshooting, not something you can use as a real-time receiver. For non-realtime yes, please refer to link I shared how to do that.