-
Notifications
You must be signed in to change notification settings - Fork 115
Closed
Labels
Description
🐛 Wrong type
The AppendProcessor should accept either a single value or an array of values for its value field. But the specification only allows for an array of values.
| value: UserDefinedValue[] |
The append processor docs say:
Accepts a single value or an array of values.
The Elasticsearch processor accepts a java Object, and this is the location where it gets used:
For example, this Fleet integration pipeline would not match the current spec.
Definition
If possible provide a snippet with the fix.
- value: UserDefinedValue[]
+ value: UserDefinedValue[] | UserDefinedValue