-
Notifications
You must be signed in to change notification settings - Fork 225
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
add support for configuring trace agent #45
Conversation
With 5.11.0, there are additional sections in datadog.conf observed by the trace agent. But changing the semantics of `datadog_config` will break backwards compatibility with existing role users expecting that dictionary to populate the [Main] section. Instead, we add another nested dictionary to support extra sections.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
README.md
Outdated
trace.config: | ||
env: dev | ||
trace.concentrator: | ||
extra_aggregators: version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: an extra leading whitespace would be nice to keep the 2-space indentation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
a wild tab appeared, replaced with spaces
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:)
With 5.11.0, there are additional sections in datadog.conf observed
by the trace agent.
But changing the semantics of
datadog_config
will break backwardscompatibility with existing role users expecting that dictionary
to populate the [Main] section.
Instead, we add another nested dictionary to support extra
sections.