The way you would implement these in your transforms/props.conf is as follows:
In transforms.conf you would actually define two separate transforms.
[foo]
REGEX = .*,Admin:\s(?<user>\w+),(?<message>.*),(?<policy>.*)
[bar]
REGEX = .*PES0:\s(?<machine>\w+),(?<srvr_action_taken>\w+),,(?<user_action_taken>\w+\s\w+),Begin:.*Rule:\s(?<rule_used>.*),\d+,(?<process_called>.*),\d+,No\sModule\sName,(?<filename>.*),User:\s(?<user>\w+),Domain:\s(?<domain>\w+)
Then in your props.conf you reference the above transforms like so:
[syslog]
REPORT-syslog = foo, bar
... View more