We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Suppose you want to configure the console exporter using file configuration. You might have a configuration like:
tracer_provider: processors: - batch: exporter: console:
But this wont work. For the reason described here, you need to configure console with an empty object {}:
{}
tracer_provider: processors: - batch: exporter: console: {}
This is inconvenient, error prone, and surprising. Investigate jackson configuration options to see if we can remove this requirement.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Suppose you want to configure the console exporter using file configuration. You might have a configuration like:
But this wont work. For the reason described here, you need to configure console with an empty object
{}
:This is inconvenient, error prone, and surprising. Investigate jackson configuration options to see if we can remove this requirement.
The text was updated successfully, but these errors were encountered: