Open
Description
Hello,
We are having some issues with some events being dropped because they have some immense field.
Flattened field [crowdstrike.event.Attributes] contains one immense field whose keyed encoding is longer than the allowed max length of 32766 bytes. Key length: 25, value length: 114376 for key starting with [old_group_assignment_rule]
Looking at the mappings for this field, the parameter ignore_above
is not present.
"crowdstrike": {
"properties": {
"event": {
"properties": {
( .... )
"Attributes": {
"type": "flattened"
}
( .... )
}
}
}
}
Some keys in this flattened field can have a lot of values, so the ignore_above
parameter needs to be added to at least avoid droppping events.
In the example the value for the key old_group_assignment_rule
has 114 KB
, so the ignore_above
needs to be set to the maximum value allowed.