All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.whispersystems.wavefront.metrics.CpuUsageGauge Maven / Gradle / Ivy

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