wng_98840
Apr 19, 2012Nimbostratus
bigpipe include
Would the following code work in 9.4.8 and 10.2? I'm trying to monitor for specific logging I setup using an irule. I want to parse out those logs in a separate file. Also how do I go about removing this from the config if I don't need it anymore.
Thanks in advance,
Bill
********************************
bigpipe syslog include '"
filter f_local0 {
facility(local0) and not match(\": \");
};
filter f_local0_customlog {
facility(local0) and match(\": \");
};
destination d_ltm {
file("/var/log/ltm" create_dirs(yes));
};
destination d_customlog {
file(\"/var/log/customlog\" create_dirs(yes));
};
log {
source(local);
filter(f_local0_customlog);
destination(d_customlog);
};
log {
source(local);
filter(f_local0);
destination(d_ltm);
};
"'