Zhongyang Wu

Results 130 comments of Zhongyang Wu

Yeah I think the thought was to meet biweekly but the time didn't properly setup

Hey 👋 I haven't used datadog for a while so want to check by log do you mean the log appended as part of a span(Something like ![image](https://user-images.githubusercontent.com/12531298/178422733-f02ebf9d-a574-45f4-bdc6-6289d9f3d9c3.png) or it's...

Ahhh I see then I think we should have all you need to build one. In opentelemetry we have a concept called [events](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/api.md#add-events), which usually corresponds with logs in spans....

Generally, it's not possible directly. Without `tracing`, you can get the current span by `get_active_span` method. With `tracing`. Things may be a little complicated. The end goal is to build...

> Would it be possible to add some kind of hook to the log formatter or the log layer that retrieved additional fields? That sounds like an interesting topic to...

Thanks for the detailed report and example! This example also seems to be working if the span is not reported via `tracing`. @jtescher any thoughts?

@jtescher I was able to reproduce the issue after I spin up an otel-collector container and use the example to connect it

Could you provide more details? For example, what's your setup. Did you test your agent running alongside the application?

Based on the docker-compose files provided. It seems your env vars don't work. As `opentelemetry-jaeger` doesn't support ``` - JAEGER_SERVICE_NAME=trade-host - JAEGER_AGENT_HOST=jaeger - JAEGER_AGENT_PORT=6831 - JAEGER_SAMPLER_MANAGER_HOST_PORT=jaeger:5778 ``` Instead, you can...

Please correct me if I misunderstand. But I think you are looking to count the hits per page in the last metrics batch? But from the metrics SDK side, `counter`...