Open nulian opened 2 months ago
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.
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.