embedded-jmxtrans-1.1.0
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, defaultfalse
, use TLS for the connection to the Graphite/Carbon servertls.insecure
: optional, defaultfalse
, disable all SSL certificate checks (certificate not trusted by the JVM such as self signed certs ...), please don't use it on a production systemtls.trustStore
andtls.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 defaulttls.keyStore
andtls.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