In splunk doc it is mentioned that**
[[[Note**: In this example, the order of the transforms in props.conf matters. The null queue transform must come first; if it comes later, it will invalidate the previous transform and route all events to the null queue.
In props.conf:
[source::/var/log/messages]
TRANSFORMS-set= setnull,setparsing
2. In transforms.conf:
[setnull]
REGEX = .
DEST_KEY = queue
FORMAT = nullQueue
[setparsing]
REGEX = [sshd]
DEST_KEY = queue
FORMAT = indexQueue]]]
why we need to put nullqueue transform first and index queue later? Putting setnull transform first do not delete events before going to setparsing transform?
... View more