-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
New component: AMQP/RabbitMQ receiver and exporter to move OTLP data #10592
Comments
This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping |
I'm also looking for an RabbitMQ/AMQP0-9-1 exporter. @djaglowski I can work on both receiver and exported implementation as time permits. |
This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping |
This issue has been closed as inactive because it has been stale for 120 days with no activity. |
Is this addition still on the roadmap? |
To add some more context to it, the exporter can Protobuf serialized traces, metrics, and logs. The sample configuration can look something like this: exporters:
amqp091:
address: amqp://guest:guest@localhost:5672/
exchange: otlp
traces_routing_key: otlp.traces
metrics_routing_key: otlp.metrics
logs_routing_key: otlp.logs |
The purpose and use-cases of the new component
In case of an infrastructure where telemetry can only be tunneled through an AMQP RabbitMQ exchange, it'd be great if one could use the OPTL Collector on both ends of that tunnel to proxy (export and receive) the telemetry data. I believe this is what the Kafka Exporter and the Kafka Receiver are for, though please correct me if I'm wrong.
The existing RabbitMQ Receiver does not serve that purpose. Instead, it is used to collect the RabbitMQ instance's own telemetry.
Example configuration for the component
The architecture would look like this:
Related Architecture
With such contraints, one can use this architecture with logstash to push logs. It is also possible to design a custom made client/proxy to pull and push metrics, resembling what the Prometheus PushProx does, but over AMQP insteand of HTTP.
For reference, here's how the logstash output (exporter) plugin, and the logstash input plugin (receiver) can be configured.
Telemetry data types supported
All three: traces, metrics and logs.
The text was updated successfully, but these errors were encountered: