F5 has given me a sample configuration for the /etc/syslog-ng/syslog-ng.conf
Here is what you should add to the file for logging to a remote “loghost“.
destination loghost {
udp ("remote_ip_of_server");
};
log {
source(local);
destination (loghost);
};