fluent-logger-java icon indicating copy to clipboard operation
fluent-logger-java copied to clipboard

A structured logger for Fluentd (Java)

Results 35 fluent-logger-java issues
Sort by recently updated
recently updated
newest added

It would be nice if this logger would support Unix Domain Sockets as the target instead of only (host, port) inet addresses. `UnixDomainSocketAddress` was added in Java 16. However, this...

When running spark-submit with slf4j-log4j12-1.7.18.jar in the ClassPath, FluentLogger works with no issues. When we use version 1.7.30 which comes with Spark3.0, Fluentlogger.getLogger throws a null pointer exception. This is...

Now, the log message contains the class name: 2021-12-19 22:59:31,787 ERROR [main] org.fluentd.logger.sender.RawSocketSender java.net.ConnectException: Connection refused (Connection refused) Since log frameworks usually have a way to log class name without...

[Caching Dependencies and Directories](https://docs.travis-ci.com/user/caching/) Travis CI can cache content that does not often change, to speed up the build process. ===================== If there are any inappropriate modifications in this PR,...

Bumps logback-classic from 1.1.1 to 1.2.0. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ch.qos.logback:logback-classic&package-manager=maven&previous-version=1.1.1&new-version=1.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

The test `org.fluentd.logger.sender.TestRawSocketSender#testReconnectAfterBufferFull` can fail due to a different iteration order of HashMap. The fix is to change HaskMap to LinkedHashMap so that the iteration order remains stable and the...

Bumps [junit](https://github.com/junit-team/junit4) from 4.8.2 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...

dependencies

AsyncRawSocketSender is just a wrapper around RawSocketSender that does its work in a separate thread. also added a factory method to create a logger with its own sender, and moved...

I have a fluentD aggregator running in AWS with configuration like this ``` @type forward port 24224 self_hostname fluentd-aggregator shared_key test_key ``` I didn't find any examples for passing self_hostname...