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
There are multiple processors that are not configurable through yaml. With shortly clicking through I found clone, convert, default, starlark
They all have something like the following as syntax when converted to toml
[[processors.converter]] [processors.converter.tags] string = [ "application_identifier", "app_uuid", "pod", "endpoint_id", "block_id", "field_*", ]
But they incorrectly get converted to something like
[[processors.converter]] [[processors.converter.tags]] string = [ "application_identifier" "app_uuid", "pod", "endpoint_id", "block_id", "field_*", ]
That is because multiple other processors use the double [ syntax on the second level.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There are multiple processors that are not configurable through yaml.
With shortly clicking through I found clone, convert, default, starlark
They all have something like the following as syntax when converted to toml
But they incorrectly get converted to something like
That is because multiple other processors use the double [ syntax on the second level.
The text was updated successfully, but these errors were encountered: