Yuri Shkuro

Results 1756 comments of Yuri Shkuro

> The second one converts it to otel format spans & concat them based on business rules. But how does this get into Jaeger? Do you then take the OTEL...

This is what I am getting from your description. ```mermaid flowchart LR A[App] --> |Custom\nJSON|Kafka Kafka --> C[Custom\nConverter] C --> |OTLP JSON|JC[Jaeger\nCollector] JC --> |??|Kafka2 Kafka2 --> JI[Jaeger\nIngester] ``` Btw,...

So all the fixes we have so far are defensive. Still don't know how messages existing collector->Kafka or entering Kafka->ingested might end up with nil Process. If it's due to...

> I believe it went wrong at Jaeger Collector to Kafka step or during the upgrade. @locmai did you notice any unusual logs in the collector during Kafka upgrade? Other...

This works fine with all-in-one: ```sh $ curl --location --request POST 'http://127.0.0.1:4318/v1/traces' \ --header 'Content-Type: application/json' \ --data-binary @~/Downloads/otel-trace.json ``` @huahuayu are you saying that sending the same data payload...

Jaeger only supports JSON and Protobuf, so it has to be the latter.

I just pushed a docker-compose config for running collector->Kafka->ingester pipeline (7006e9fe50c8467ad6b84f2072a3cf136bfbe4ec) and tested with the trace from https://gist.github.com/huahuayu/cd3ad1ddf076b2892a6c3c1c68a9ca34: ``` $ curl -v --location --request POST 'http://127.0.0.1:4318/v1/traces' \ --header 'Content-Type: application/json'...

I would just wait for the next release, but if necessary we could do a patch release.

Jaeger binaries support "version" subcommand, is that not enough?

I don't know if Go compiler supports setting these properties on the Windows binary, but I don't have any objections to including them.