options { sync(0); };

source src { udp (); unix-stream("/dev/log"); internal(); };

destination testhg { file("/var/log/test.log"); };

filter f_testhg { match("GET"); };

log { source(src); filter(f_testhg); destination(testhg); };

