For smartevents server we would like to implement an external script for automatic reaction on correlated events and to send this event to syslog.
Now i found this article
https://community.checkpoint.com/t5/Management/SmartEvent-External-Script-for-Mail/td-p/78994#
So for my use case i would need something like this, we just want to send the entire event via syslog using Automatic Reaction
[Expert@checkpoint-management:0]# cat $RTDIR/bin/ext_commands/automaticreactionsyslog
#!/bin/bash
INPUT=$(cat);
EVENT="${INPUT//[^a-zA-Z0-9 ().,:;+_-]}";
logger ......;
Does someone here perhaps has any guidence on how to achieve this?