Giter Site home page Giter Site logo

Comments (4)

cyrille-leclerc avatar cyrille-leclerc commented on May 14, 2024

This looks great, thank you very much for this work that could help many users. Could you propose a pull request?

Regarding Java 6 or 7, I think we can stipulate that the RollingFileOutputWriter requires Java 7 (we would compile with Java 6 compatibility, it's just this appender that would throw a ClassNotFoundException with Java 6).

Regarding the date formatting:

  • could you protect the thread safety of the SimpleDateFormat (e.g. adding synchronized to the method). Even if the implementation is currently single threaded, this may cause nasty bugs if we one day decide to multi thread.

  • did you think of formatting the date with the ISO 8601 format which holds the timezone ?

    TimeZone tz = TimeZone.getTimeZone("UTC");
    DateFormat dfISO8601 = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'");
    dfISO8601.setTimeZone(tz);
    String nowAsISO8601 = dfISO8601.format(new Date());

from jmxtrans-agent.

zbintliff avatar zbintliff commented on May 14, 2024

Think its done, just need to test later.

from jmxtrans-agent.

cyrille-leclerc avatar cyrille-leclerc commented on May 14, 2024

The only non-thread safe part of SimpleDateFormat is the actual format() method right? The postConstruct() doesn't need to be synchronized right?

Correct, in our case, only simpleDateFormat.format() needs to be thread safe.

from jmxtrans-agent.

cyrille-leclerc avatar cyrille-leclerc commented on May 14, 2024

Version 1.0.7 adds RollingFileOutputWriter. It should be soon visible in Maven Central.

https://github.com/jmxtrans/jmxtrans-agent/releases/tag/jmxtrans-agent-1.0.7

from jmxtrans-agent.

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.