We are having an issue where we would like to route all events from a specific source to a third-party (ArcSight) but then index only some of these events.
We are doing fine routing to ArcSight, but when we add in "null_alert" below to our props.conf TRANSFORMS-routing line, those events are neither forwarded or indexed.
Here are the configs:
# props.conf
[source::udp:514]
TRANSFORMS-routing=routeArcSight,null_alert
# transforms.conf
[routeArcSight]
REGEX=(.)
DEST_KEY=_SYSLOG_ROUTING
FORMAT=ArcSightGroup
[null_alert]
REGEX = \w+\s+\d+\s+\d+\:\d+\:\d+\s+([^,]+\,){3}THREAT,url,.*,alert,
DEST_KEY = queue
FORMAT = nullQueue
# outputs.conf
[syslog]
indexAndForward=true
defaultGroup=ArcSightGroup
[syslog:ArcSightGroup]
type=UDP
disabled=false
server=10.21.47.123:514
... View more