-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Accept data from datadog agent #27045
Comments
Pinging code owners:
See Adding Labels via Comments if you do not have permissions to add labels yourself. |
BTW I reproduced the issue. Looks like agent version 7.47.0 tries to send data to No solution in sight. |
A new format, yay/ Ill get something sorted |
Looks like a valid bug from comments, labeling as such and removing |
@boostchicken is DD Agent -> datadogreceiver actually supported? My understanding is that it supports applications instrumented with DD client -> datadogreceiver directly. edit: I should specify that I have limited understanding in Datadog and unsure if the format sent from the agent is different from the ones sent from the application instrumented with the Datadog tracer client. |
Hi, I made a fix in this commit #27672 |
**Description:** fixing #27045. Fixing datadog receiver to listen to api/v0.2/traces api. **Link to tracking Issue:** #27045 **Testing:** add a a UT to datadog translator for api/v0.2/traces This translator relies on the receiver of datadog agent: https://github.com/DataDog/datadog-agent/blob/2973404818f6cf02138a5ae3ac9019c342adce38/test/integration/serverless/recorder-extension/main.go#L257 E2E tests has been done, where datadog receiver gets traces from the datadog agent.
**Description:** fixing open-telemetry#27045. Fixing datadog receiver to listen to api/v0.2/traces api. **Link to tracking Issue:** open-telemetry#27045 **Testing:** add a a UT to datadog translator for api/v0.2/traces This translator relies on the receiver of datadog agent: https://github.com/DataDog/datadog-agent/blob/2973404818f6cf02138a5ae3ac9019c342adce38/test/integration/serverless/recorder-extension/main.go#L257 E2E tests has been done, where datadog receiver gets traces from the datadog agent.
Component(s)
receiver/datadog
Describe the issue you're reporting
Hey, trying to collect traces from
DataDog agent
using theOTEL collector
with theDataDog Receiver
.On
DataDog
side I set up another end point by adding this code to thevalues.yaml
file:On the
OTEL collector side
I added theDataDog receiver
:When a trace is created I get the following
warn
on theDataDog trace agent
:The
OTEL collector
log show nothing.If the
OTEL collector
is unreachable, TheDataDog agent
log this message:Any idea what can be the problem? or if there is another way to collect
traces
from theDataDog agent
?The text was updated successfully, but these errors were encountered: