Since codahale-metrics
have been moved under io.
. An implementation in our code was making use of the class:
import com.codahale.metrics.JmxReporter
with the dependency version
<metrics.core.version>3.2.2</metrics.core.version>
Now that, we are planning to upgrade to the latest release for the artifact
<metrics.core.version>4.1.0-rc3</metrics.core.version>
this no more has the class we were using, has this been migrated to some other artifact or is there an alternative to using the JmxReporter
now?
PS: Have searched for their release notes and alternatives the over internet but couldn't find a relevant result to this yet.