Code Monkey home page Code Monkey logo

Comments (4)

frosiere avatar frosiere commented on June 21, 2024 1

Perfect. If I drop a PR, would it be possible to have a 2.6.1 release soon?
Thanks a lot.

from fluency.

komamitsu avatar komamitsu commented on June 21, 2024

@frosiere Even with setRecordFormatter(), it looks still a bit complicated to inject Jackson modules. And I have another concern that a wrong RecordFormatter can be passed (e.g. passing JsonlRecordFormatter to FluencyBuilderForFluentd.)

How about this?

public class CustomFluencyLogbackAppender extends FluencyLogbackAppender<ILoggingEvent> {

    @Override
    protected FluencyBuilderForFluentd configureFluency() {
        final var builder = new FluencyBuilderForFluentd();
        // "setJacksonModulesForRecordFormatter" is too verbose...?
        builder.setJacksonModulesForRecordFormatter(Lists.newArrayList(
            new Jdk8Module(),
            new JavaTimeModule()
        ));
        return builder;
    }
}

from fluency.

frosiere avatar frosiere commented on June 21, 2024

Good point, proposal is nice and prevents using a wrong formatter. So, this may be the way to go.

An alternative would either be a method taking the FluentdRecordFormatter like
builder.setRecordFormatter(FluentdRecordFormatter formatter)
Or a method taking the record formatter config like
builder.setRecordFormatterConfig(RecordFormatter.Config config)
This would support possible extensions of the config in future releases.

From a more general point of view, only the solution exposing the formatter gives a way to "setup" (enable/disable feature, etc) the internal ObjectMapper by overriding the method AbstractRecordFormatter#registerObjectMapperModules.

Thanks a lot for your reply.

from fluency.

komamitsu avatar komamitsu commented on June 21, 2024

Yeah, setRecordFormatter() is more powerful. I'll go with it.
I'm a bit busy these days and it would take some time until the feature is released.

from fluency.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.