<div dir="ltr"><div><div><div><div><div>Ok, after getting some rest and experimenting, I determined the solution.<br><br></div>Creating a custom logformat had potential for a solution, but really wasn&#39;t the ideal way.  After digging in the code more and stumbling on the logproto.c file (specifically the _frame_ functions), I was able to create my own frame handler for my module.  <br>
<br></div>Essentially, <br><br></div>Created a custom framed_client_post that encapsulated messages to the destination protocol.  This seems to keep true to the logproto intent.  <br><br></div>Assigned the custom proto when issuing a log_writer_reopen and life is good.<br>
<br></div>Next challenge is how to prevent dropped messages in high volume scenarios...  <br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, May 8, 2013 at 5:38 PM, Dylan Kulesza <span dir="ltr">&lt;<a href="mailto:dylan.kulesza@gmail.com" target="_blank">dylan.kulesza@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div><div><div><div><div><div>I&#39;m working on a custom module to integrate with a third parties native log format.  My intent is to have messages come into syslog-ng and processed as usual and then sent out a custom destination driver.  <br>

<br>Right now I&#39;ve hacked together different code to make it work (tcp socket connection per log source) and now I&#39;m at the point of actually sending a custom message.  I&#39;ve tried to stay as &quot;true&quot; to the syslog-ng as possible and have leveraged the log_forward_msg method to send my LogMessage.  I was hoping I could just prepend data to the LogMessage but realized after doing all the other leg work that it wasn&#39;t a simple string :)<br>

<br></div>So, my question is - what would the easiest way to leverage the existing queue-&gt;log_forward_msg (doesn&#39;t require the socket to be open vs examples such as spoof_source in afsocket)  to write a custom message?  I see that LogTemplate may have what I need, but after submerging myself in syslog-ng for the past week I&#39;m not seeing clearly...  Can anyone lend a hint/helping hand?<br>

<br></div>What I&#39;m trying to do:<br><br></div>Open Socket<br></div>Send Magic/StartPacket<br><br></div>Prepend all log messages with a byte message - for example:<br><br></div>040404040400010MESSAGE  (Of course Message would be in bytes/hex).<br>

<br></div>It seems I would create an NVENTRY for my prepend message and then override log_writer_format_log?  to do this?  Not 100% clear how I would accomplish this.  I also don&#39;t want to change any of the core/lib syslog-ng to accomplish this.  Should be implemented purely as a module.<br>

<br><br></div>Thanks!<br></div>
</blockquote></div><br></div>