Paolo Patierno
Paolo Patierno
Now that OpenTelemetry is officially supported by the bridge since 0.22.0 release, we should remove the OpenTracing support. The OpenTracing project is now archived and not supported anymore with new...
Currently, the tracing span for a `poll` operation is created only when the actual Kafka poll ends successfully: This happens in the `HttpSInkBridgeEndpoint.pollHandler` method here: https://github.com/strimzi/strimzi-kafka-bridge/blob/main/src/main/java/io/strimzi/kafka/bridge/http/HttpSinkBridgeEndpoint.java#L249 Kafka poll success means...
Since the OpenTracing support, we have never had proper tests for tracing. With the latest OpenTelemetry addition, we have got this ones here https://github.com/strimzi/strimzi-kafka-bridge/tree/main/src/test/java/io/strimzi/kafka/bridge/tracing but anyway these tests just run...
Currently we are setting a default OpenTracing factory at this line https://github.com/strimzi/strimzi-kafka-bridge/blob/main/src/test/java/io/strimzi/kafka/bridge/tracing/OpenTracingTest.java#L26 It can be removed when Vert.x 4.3.4 is out, because of this fix https://github.com/eclipse-vertx/vertx-tracing/pull/45 This way the OpenTracing...
As described in the MQTT 3.1.1 spec : > If the ClientId represents a Client already connected to the Server then the Server MUSTdisconnect the existing Client. we should have...
I was looking at the SDK configuration documentation here https://opentelemetry.io/docs/concepts/sdk-configuration/ and noticed that other than general SDK related configs, it also lists configuration specific for the OTLP exporter. I was...
We know that the Apache Kafka protocol is not a standard one (so recognized by organization like OASIS) but I was wondering if it could make sense to have a...
First of all sorry if there is a way to do what I am going to describe but I wasn't able to find any information in the doc. I want...
Hi all, when creating a service account I see that an `id` is assigned to it. What's the main purpose of it compared to the `client_id` got when the service...
The `rhoas kafka topic create` allows to specify the output of the command as YAML and JSON. I was thinking that sometimes for automated tasks and avoid to pollute the...