blob: 12c3b28bd70cc467451cd1b5084ef6431a3c6f3b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Laurent CARON
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Laurent CARON (laurent.caron at gmail dot com) - initial API and implementation
*******************************************************************************/
package org.mihalis.opal.systemMonitor;
import java.lang.management.ManagementFactory;
import javax.management.MBeanServerConnection;
import javax.management.ObjectName;
/**
* Instances of this class represent a sample that contains the CPU usage.
*/
public class CPUUsageSample implements Sample {
/** The Constant PROCESS_CPU_TIME. */
private static final String PROCESS_CPU_TIME = "ProcessCpuTime";
/** The Constant OBJECT_NAME_ATTRIBUTE. */
private static final String OBJECT_NAME_ATTRIBUTE = "java.lang:type=OperatingSystem";
/** The m bean server connection. */
private final MBeanServerConnection mBeanServerConnection = ManagementFactory.getPlatformMBeanServer();
/** The object name. */
private ObjectName objectName;
/** The time. */
private long time;
/** The process time. */
private long processTime;
/**
* Constructor.
*/
public CPUUsageSample() {
try {
this.objectName = new ObjectName(OBJECT_NAME_ATTRIBUTE);
} catch (final Exception e) {
throw new RuntimeException(e);
}
}
/**
* Gets the value.
*
* @return the value
* @see org.mihalis.opal.systemMonitor.Sample#getValue()
*/
@Override
public double getValue() {
try {
float f = ((Long) this.mBeanServerConnection.getAttribute(this.objectName, PROCESS_CPU_TIME)).longValue() - this.processTime;
f /= System.nanoTime() - this.time;
this.time = System.nanoTime();
this.processTime = ((Long) this.mBeanServerConnection.getAttribute(this.objectName, PROCESS_CPU_TIME)).longValue();
return f;
} catch (final Exception localException) {
throw new RuntimeException(localException);
}
}
/**
* Gets the max value.
*
* @return the max value
* @see org.mihalis.opal.systemMonitor.Sample#getMaxValue()
*/
@Override
public double getMaxValue() {
return 1.0d;
}
}