@@ -104,15 +104,15 @@ transforms.TombstoneHandler.type=io.aiven.kafka.connect.transforms.TombstoneHand
104104transforms.TombstoneHandler.behavior =drop_silent
105105```
106106
107- ### ` ConcatField `
107+ ### ` ConcatFields `
108108
109109This transformation adds a new field to the message with a key of type string and a value of string which is the
110110concatenation of the requested fields.
111111
112112Exists in two variants:
113113
114- - ` io.aiven.kafka.connect.transforms.ConcatField $Key ` - works on keys;
115- - ` io.aiven.kafka.connect.transforms.ConcatField $Value ` - works on values.
114+ - ` io.aiven.kafka.connect.transforms.ConcatFields $Key ` - works on keys;
115+ - ` io.aiven.kafka.connect.transforms.ConcatFields $Value ` - works on values.
116116
117117The transformation defines the following configurations:
118118 - ` field.names ` - A comma-separated list of fields to concatenate.
@@ -123,12 +123,12 @@ The transformation defines the following configurations:
123123Here is an example of this transformation configuration:
124124
125125```
126- transforms=ConcatField
127- transforms.ConcatField .type=io.aiven.kafka.connect.transforms.ConcatField $Value
128- transforms.ConcatField .field.names=["test","foo","bar","age"]
129- transforms.ConcatField .output.field.name="combined"
130- transforms.ConcatField .delimiter="-"
131- transforms.ConcatField .field.replace.missing="*"
126+ transforms=ConcatFields
127+ transforms.ConcatFields .type=io.aiven.kafka.connect.transforms.ConcatFields $Value
128+ transforms.ConcatFields .field.names=["test","foo","bar","age"]
129+ transforms.ConcatFields .output.field.name="combined"
130+ transforms.ConcatFields .delimiter="-"
131+ transforms.ConcatFields .field.replace.missing="*"
132132```
133133
134134## License
0 commit comments