![JAR search and dependency download from the Maven repository](/logo.png)
org.whispersystems.wavefront.metrics.CpuUsageGauge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-wavefront Show documentation
Show all versions of dropwizard-wavefront Show documentation
A Dropwizard Metrics reporter for Wavefront
The newest version!
package org.whispersystems.wavefront.metrics;
import com.codahale.metrics.Gauge;
import com.sun.management.OperatingSystemMXBean;
import java.lang.management.ManagementFactory;
public class CpuUsageGauge implements Gauge {
@Override
public Integer getValue() {
OperatingSystemMXBean mbean = (com.sun.management.OperatingSystemMXBean)
ManagementFactory.getOperatingSystemMXBean();
return (int) Math.ceil(mbean.getSystemCpuLoad() * 100);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy