Skip to content

v2.0.4 - Maintenance Release

Compare
Choose a tag to compare
@ivantopo ivantopo released this 18 Nov 21:31
· 7 commits to master since this release

New

  • mongo: Now including the new kamon-mongo module.

Fixes

  • system-metrics: A "Failed to get statvfs. Error code: 13" error was being logged by OSHI but it should have been just a warning that it was impossible to get the storage usage via statvfs, but it was still possible to get it via other mechanisms. Fixed by @ivantopo via kamon-io/kamon-system-metrics@086fc21
  • system-metrics: The JVM Threads metrics were missing since the upgrade to Kamon 2.0 and they were brought back. Contributed by @ivantopo via kamon-io/kamon-system-metrics@17dcb17. The new metrics are:
    • jvm.threads.total: Tracks the current number of live threads on the JVM.
    • jvm.threads.peak: Tracks the peak live thread count since the JVM started.
    • jvm.threads.daemon: Tracks the current number of daemon threads on the JVM.

Improvements

  • core: Show the right error message when a metric redefinition is attempted. Fixes kamon-io/Kamon#608 and contributed by @ivantopo via kamon-io/Kamon#106
  • core: Remove unused enabled setting in the Status Page reference configuration. Contributed by @pnerg via kamon-io/Kamon#621.
  • akka: Support for Akka 2.6 and Artery remoting is included in this release.