Pushpak Prateek

Results 15 comments of Pushpak Prateek

Thanks for quick response @cartermp . What i'm looking for is any docs or example for context propagation in nodejs distributed service. As linked above, the W3C docs is quite...

![image](https://user-images.githubusercontent.com/56984884/195938299-1f6e4204-ad84-437e-9222-f25a44ff4147.png) In service A, i call service B as- ![image](https://user-images.githubusercontent.com/56984884/195938488-6ef13560-9610-4c9b-894e-31128e9ed6d7.png) I pass the traceparent header as specified in [W3C docs](https://www.w3.org/TR/trace-context/). Now in Service b , i want to use traceparent...

Thanks for your response @svrnm , I have been able to pull this off. This is what I've done In the calling function, ```javascript const opentelemetry = require("@opentelemetry/api"); const {W3CTraceContextPropagator}=...

Thanks for the quick response @jondubois. I really appreciate it. But even if i disable the ping time out, that is `let agOptions = { pingTimeoutDisabled: true }; ` It...

I have been working on the API route as you suggested in jaeger query, I added another API endpoint as ```golang aH.handleFunc(router, aH.sendToCollector, "/collector").Methods(http.MethodPost) ``` ```golang func (aH *APIHandler) sendToCollector(w...

I tried building Otel collector locally but was unable to reach the UI , any leads on how to create a collector or UI would be really helpful

The first choice is an easy one, we can replace the url in collector options in tracing config by the collector url and it will be done. The second one...

Using elastic APM for trace viewing Use following configuration docker compose configuration ```yaml version: "2" services: collector: image: otel/opentelemetry-collector:latest command: ["--config=/otel-collector-config.yaml"] volumes: - './otel-collector-config.yaml:/otel-collector-config.yaml' ports: - "4318:4318" depends_on: - jaeger-all-in-one...

It shows in jaeger as well as ![image](https://github.com/jaegertracing/jaeger-ui/assets/56984884/b18cf495-a0d3-4b51-99e5-e90124d2e61e) with general otel collector config ```yaml receivers: otlp: protocols: http: cors: allowed_origins: ["*"] allowed_headers: ["*"] exporters: logging: verbosity: Detailed jaeger: endpoint: jaeger-all-in-one:14250...

Hi @yurishkuro , is it up for grab can I start on it ?