Transformer to split detection item based on field and value #94
-
Hi, the goal I am trying to achieve is splitting a detection item via a transformer, based on field and value, for example, given a sigma rule with detection item first question, do you suggest doing so in a transformer? or in the backend logic itself? if so with a transformer, how do I build the new nodes? I believe it should use Looking forward for suggestions |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi! Yes, this is a use case for the processing pipelines and a |
Beta Was this translation helpful? Give feedback.
Hi! Yes, this is a use case for the processing pipelines and a
DetectionItemTransformation
would be the appropriate base class. You can simply return aSigmaDetection
containing theSigmaDetectionItem
s the value was splitted into. Because theSigmaDetectionItem
s of aSigmaDetection
are implicitely AND-linked, nothing further has to be done.