Skip to content

embedded-jmxtrans-1.1.0

Compare
Choose a tag to compare
@cyrille-leclerc cyrille-leclerc released this 01 Aug 06:18
· 67 commits to master since this release
  • Add support for TLS on GraphiteWriter thanks to @YannRobert. New configuration parameters:
    • useTls: optional, default false, use TLS for the connection to the Graphite/Carbon server
    • tls.insecure: optional, default false, disable all SSL certificate checks (certificate not trusted by the JVM such as self signed certs ...), please don't use it on a production system
    • tls.trustStore and tls.trustStorePassword path of the JKS TrustStore and its password. The path can be file system based ("file:...") or classpath based ("classpath:..."), optional, typically used when the Graphite/Carbon server uses a certificates that is not trusted by the JVM by default
    • tls.keyStoreand tls.keyStorePassword path of the JKS KeyStore and its password. The path can be file system based ("file:...") or classpath based ("classpath:..."), optional, typically used to perform client authentication based on a client certificate
  • Fix lifecycle bug: the "stop()" phase was not thread safe thanks to @YannRobert