Attila Szakacs

Results 64 comments of Attila Szakacs

Hi @jkimalane TCP Keep-alive packets are sent when there is no communication on the socket. If I understand correctly, the `d_forward` destination was sending logs when the connection broke. When...

Supported platforms are listed in this function: https://github.com/syslog-ng/syslog-ng/blob/2d594f664a5d8c01081c96c966ac3d05ef8675d4/modules/system-source/system-source.c#L265 ``` "Linux" "SunOS" "FreeBSD" "GNU/kFreeBSD" "HP-UX" "AIX" "OSF1" "CYGWIN" "OpenBSD" ``` We are getting the info from `uname`. Maybe we can make...

@czanik Is is possible for DragonFlyBSD to change `scl/system/plugin.conf`, or should we start working on integrating them into the `system` source in our C code?

It seems like macOS does not have `posix_fallocate()` :(

Added a hand-written preallocation for platforms, which do not have `posix_fallocate()`.

We can decide to not support preallocation at all on platforms, where we cannot guarantee it to be relatively fast.

On a HDD with ext4, the preallocation takes milliseconds. On a HDD with NTFS it is really slow (10 GiB took ~5 minutes), and cannot be cancelled, due to my...

`prealloc()`: We will make the default `no`, there will be no `auto` for now.

Why I suspect it is a bug: * This is accepted by syslog-ng: `set("$(list-search --mode pcre \\\" ${LIST})", value("VALUE")); ` and the pattern is `"` * This is not accepted...