<div dir="ltr">Hi all,<div><br></div><div>I tried to setup simple relay with syslog-ng, it receives log on one port and forward to the destination. It works fine when destination is available, but when destination unavailable for a short period of time and then became available I miss one log entry.</div><div><br></div><div>For example assume that I send simple numbers with logger command to syslog-ng, from 0 to 100, when I receive 50 on destination I stop its listener and start it again, in this case the first log entry that I receive is 52 instead of 51.</div><div><br></div><div>Here is my syslog-ng.conf:</div><div><br></div><div>@version: 3.26<br></div><div><br>options {<br>  time_reopen(5);<br>};<br><br>source s_network {<br>  network(<br>    ip("127.0.0.1")<br>    port(514)<br>    transport("udp")<br>  );<br>};<br><br>destination d_network {<br>  network(<br>    "127.0.0.1"<br>    port(5514)<br>    transport("udp")</div><div>  );<br>};<br></div><div><br></div><div>log {<br>  source(s_network);<br>  destination(d_network);<br>};<br></div><div><br></div><div>Would you please help me to resolve this issue?</div><div><br></div><div>Regards,</div><div>Ali</div></div>