Thanks for the verification. I made some changes to the code to log to a remote log server. I enabled the irule, but don't see anything being written to the remote syslog server. Any ideas?
bigpipe syslog include '"
destination log_server {
udp(\"x.x.x.x\" port (514));
};
filter f_local0 {
facility(local0) and not match(\": \");
};
filter f_local0_sessionlog {
facility(local0) and match(\": \");
};
destination d_ltm {
file(\"/var/log/ltm\" create_dirs(yes));
};
log {
source(local);
filter(f_local0_sessionlog);
destination(log_server);
};
log {
source(local);
filter(f_local0);
destination(d_ltm);
};
"'