<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
I am setting up syslog-ng to tail a database query log and have it sent
to a central server for analysis / archiving.&nbsp; I have it partially
working.&nbsp; I am able to send the UDP packets to the central server but I
cannot get them to be sent to central server @ local6.&nbsp; Below is my
source, destination, &amp; log&nbsp; lines:<br>
<br>
<b>source s_general_db_log {<br>
&nbsp; file ("/var/lib/mysql/mysql/general_log.CSV" flags(no-parse)
follow_freq(1) program_override("vchat3dev-db002_mysql_db_log:") ); };<br>
<br>
destination d_central { udp( "10.0.4.162" port(514) ); };<br>
<br>
log { source(s_general_db_log); destination(d_central); };<br>
<br>
</b>I have tried adding in a facility option to the destination but it
does not work.&nbsp; Any help with what I am missing would be greatly
appreciated.&nbsp; Thanks in advance.<br>
<br>
-Patrick<br>
<br>
<br>
<br>
</body>
</html>