Giter Site home page Giter Site logo

Comments (4)

vy avatar vy commented on August 19, 2024

There is something pretty weird going on when JsonGeneratorDelegate is wrapped with a TokenFilter where includeNull=false. I could not reproduce your issue with the following snippet:

@Test
public void test_maxStringLength_with_emptyPropertyExclusionEnabled() throws JsonProcessingException {

    // Create the event template.
    ObjectNode eventTemplateRootNode = JSON_NODE_FACTORY.objectNode();
    eventTemplateRootNode.put("message", "${json:message}");
    String eventTemplate = eventTemplateRootNode.toString();

    // Create the layout.
    int maxStringLength = 10;
    BuiltConfiguration configuration = ConfigurationBuilderFactory.newConfigurationBuilder().build();
    LogstashLayout layout = LogstashLayout
            .newBuilder()
            .setConfiguration(configuration)
            .setEventTemplate(eventTemplate)
            .setMaxStringLength(maxStringLength)
            .setEmptyPropertyExclusionEnabled(false)
            .build();

    // Create the log event.
    SimpleMessage message = new SimpleMessage(Strings.repeat('m', maxStringLength) + 'x');
    LogEvent logEvent = Log4jLogEvent
            .newBuilder()
            .setLoggerName(LogstashLayoutTest.class.getSimpleName())
            .setMessage(message)
            .build();

    // Check the serialized event.
    String serializedLogEvent = layout.toSerializable(logEvent);
    JsonNode rootNode = OBJECT_MAPPER.readTree(serializedLogEvent);
    assertThat(point(rootNode, "message").asText()).isEqualTo(message.getFormattedMessage());

}

Here layout.toSerializable(logEvent) doesn't thrown an exception, but the comparison still fails. I have filed FasterXML/jackson-core#609 for the issue.

from log4j2-logstash-layout.

vy avatar vy commented on August 19, 2024

@waldeinburg, I have implemented a work around for FasterXML/jackson-core#609 in 634aec3. Would you mind checking if it works for you, please?

from log4j2-logstash-layout.

waldeinburg avatar waldeinburg commented on August 19, 2024

The workaround works, thanks!

from log4j2-logstash-layout.

vy avatar vy commented on August 19, 2024

I've just released v1.0.2 including this fix.

from log4j2-logstash-layout.

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.