You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ERROR -- ddtrace: [ddtrace] (/usr/local/bundle/gems/ddtrace-1.22.0/lib/datadog/core/remote/negotiation.rb:50:in `endpoint?')
agent reachable but does not report /v0.7/config
Expected behaviour
dd-trace should not throw an error when a instance is deployed.
Will this cause an issue when gathering logs? Currently I see data is getting to datadog, but can't confirm if something is missing
Steps to reproduce
How does datadog help you?
Environment
datadog version: 7.0.0.1.0
Configuration block (Datadog.configure ...):
gem'ddtrace',require: 'ddtrace/auto_instrument'
if [[ $env!="dev"&&"$DATADOG_APM"="true" ]];thenexport DD_SERVICE=$serviceexport DD_VERSION=$version_appexport DD_APM_ENABLED=true
export DD_APM_NON_LOCAL_TRAFFIC=true
export DD_PROFILING_ENABLED=true
export DD_PROFILING_ALLOCATION_ENABLED=true
export DD_TRACE_ENABLED=true
export DD_TRACE_AGENT_URL=http://datadog-agent:8126
fi
Hey @rarodriguez94 thanks for reaching out and apologies for taking this long to answer!
So this error happens because the datadog agent deployed on your setup is either outdated (and thus it did not have the remote configuration feature) or has remote configuration explicitly disabled.
If it's the former (an outdated agent), we do recommend looking into updating it :)
You can make ddtrace not even try to hit this endpoint by setting the DD_REMOTE_CONFIGURATION_ENABLED=false environment variable, or via code
Datadog.configuredo |c|
# ... other config ...c.remote.enabled=falseend
Let us know if this helps or if we can help in any other way!
Current behaviour
Expected behaviour
dd-trace should not throw an error when a instance is deployed.
Will this cause an issue when gathering logs? Currently I see data is getting to datadog, but can't confirm if something is missing
Steps to reproduce
How does
datadog
help you?Environment
Datadog.configure ...
):The text was updated successfully, but these errors were encountered: