Balazs Scheidler
Balazs Scheidler
Don't we have the threads running at APP_CONFIG_CHANGED? Are the locks enough in production? There are other similar init functions. On Fri, Feb 18, 2022, 08:12 László Várady ***@***.***> wrote:...
As I see they do. APP_CONFIG_CHANGED is called at the very end of the reload process, e.g. on_config_inited() is called by this time, this means that LogThreadedSourceDriver already started its...
Is there anything I could do to get this merged? @mochrul has started updating the packages in Debian and I'd like to sync with his changes in our local packaging/debian...
> I have just noticed, that we have a python template function, which currently only supports string return type. I guess I should implement the full typing support there, too,...
I don't really understand what you mean here. %f should be able to parse up to nanoseconds. It assumes the digits are following a dot, and if it finds 3...
You can use the division template function with floating point numbers: Both of these worked for me: ``` # set value rewrite { set("${S_UNIXTIME}123" value("timestamp")); }; # using floating point...
btw, one thing is that I am a bit reluctant to add extra format specifiers to our strptime() implementation, except if there's at least one wide-spread platform that already defines...
I remember commenting on this, but I can't find my review notes, maybe I forgot to submit it. In any case, I'd love to see some kind of replacement string...
Hi, there's a statistics for sources that contain the timestamp of the last message received. # /sbin/syslog-ng-ctl stats |grep stamp src.tcp;#anon-source0#0;tcp,127.0.0.1;a;stamp;1610217710 This is the timestamp of the last message that...
Yup. You either read them but then you have the responsibility to put them somewhere, or you don't. On Sat, Jan 9, 2021, 20:59 Wernfried wrote: > Yes, but I...