-
Notifications
You must be signed in to change notification settings - Fork 40
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
Datadog log export? #6
Comments
Hi @TommyCpp! Personally I'm more after logs within a span, I think that's where most of the value is! |
Ahhh I see then I think we should have all you need to build one. In opentelemetry we have a concept called events, which usually corresponds with logs in spans. We already have some conversion functions to convert opentelemetry spans to a datadog spans. With opentelemetry events attached to the spans, we can just convert them into logs in datadog spans. I think this can be a good starting point. One question that remains is how does log is encoded in datadog format. Maybe worth taking a look at datadog agent implementation and see how they encode it. This is how we get the span works IIRC. Either way, feel free to let me know if you need any assistance 🚀 |
Has anything changed on this front, or are logs within spans still not readily supported via I don't really understand the suggested workaround or how to begin implementing it. Are there any existing codebases or examples that we can draw from? |
IIUC, either DataDog agent and the opentelemetry collector support receiving logs/traces over OTLP then transmitting them to Datadog. So I'm wondering: would we be better off exporting via the One caveat I see is that if inbound/outbound requests use |
Hello! I'm getting an app set up that exports
tracing
spans and logs throughtracing-opentelemetry
toopentelemetry
, which I'm finally sinking intoopentelemetry-datadog
(latest on all).I've noticed the spans themselves work great and support nesting- thanks so much for the awesome work!
My question is related to logs: I don't see them in datadog, even though I've enabled them in the DD collector and I'm seeing them in other
tracing
subscribers.I searched around for this and found this comment on another issue:
I'm opening this issue to ask:
Thanks for your time!
The text was updated successfully, but these errors were encountered: