Guillaume Lederrey

Results 92 comments of Guillaume Lederrey

No, I have no plan on implementing this. I usually don't write new OutputWriters for which I don't have a use case personally, as I would probably get the constraints...

Thanks! That sounds like a good feature to add. Any chance that you could send a pull request?

Thanks for the PR! For log rotation, I'd much prefer have this managed by the logging framework (log4j / logback, yes, there is a mess there). That's one less system...

Since you seem to be managing Java application, some knowledge of the standard logging framework will probably help you in the long run :) (sorry I could not resist). The...

Another solution would be to use https://logging.apache.org/log4j/extras/apidocs/org/apache/log4j/rolling/TimeBasedRollingPolicy.html with log4j. The class is already on the classpath.

In any case, the "right" solution would be to deprecate the log4j based output writers (keep them as an optional module) and move all logging to logback...

Yeah, those log4j appenders are a mess. We should deprecate them and replace them by slf4j output writer, which can do the same things, but driven by logging configuration. This...

jmxtrans has no specific support for service discovery. That being said: > jmxtrans can receive SIGHUP signal for reload configuration files? jmxtrans watches changes to the config files and will...

Sounds like a good idea ... Any chance you'd have a PR ready?

@seuf a PR would be great! Especially if you can implement it in a backward compatible way (a new OuptuWriter, or options on the current one). If you think you...