Split Processor - logzio/sawmill GitHub Wiki
Split [split]
This processor will split a string field into an array of values. So if a string has multiple values separated by a common separator, it will then update the field to be an array field with those values.
- field
- separator
Example
{
"steps": [{
"split": {
"config": {
"field": "xFor",
"separator": ","
}
}
}]
}