Package kieker.common.record.system
Class CPUUtilizationRecord
java.lang.Object
kieker.common.record.AbstractMonitoringRecord
kieker.common.record.system.CPUUtilizationRecord
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IMonitoringRecord>
,IMonitoringRecord
public class CPUUtilizationRecord extends AbstractMonitoringRecord
- Since:
- 1.3
- Author:
- Andre van Hoorn, Jan Waller API compatibility: Kieker 1.15.0
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CPU_ID
static java.lang.String
HOSTNAME
static double
IDLE
static double
IRQ
static double
NICE
static int
SIZE
Descriptive definition of the serialization size of the record.static double
SYSTEM
static long
TIMESTAMP
default constants.static double
TOTAL_UTILIZATION
static java.lang.Class<?>[]
TYPES
static double
USER
static java.lang.String[]
VALUE_NAMES
property name array.static double
WAIT
Fields inherited from class kieker.common.record.AbstractMonitoringRecord
TYPE_SIZE_BOOLEAN, TYPE_SIZE_BYTE, TYPE_SIZE_CHARACTER, TYPE_SIZE_DOUBLE, TYPE_SIZE_FLOAT, TYPE_SIZE_INT, TYPE_SIZE_LONG, TYPE_SIZE_SHORT, TYPE_SIZE_STRING
-
Constructor Summary
Constructors Constructor Description CPUUtilizationRecord(long timestamp, java.lang.String hostname, java.lang.String cpuID, double user, double system, double wait, double nice, double irq, double totalUtilization, double idle)
Creates a new instance of this class using the given parameters.CPUUtilizationRecord(IValueDeserializer deserializer)
-
Method Summary
Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Performs a null-check, a this-check, and a class-check.java.lang.String
getCpuID()
java.lang.String
getHostname()
double
getIdle()
double
getIrq()
double
getNice()
int
getSize()
This method should deliver the size of a binary representation of this record.double
getSystem()
long
getTimestamp()
double
getTotalUtilization()
double
getUser()
java.lang.String[]
getValueNames()
This method delivers an array containing the value names of the record.java.lang.Class<?>[]
getValueTypes()
This method delivers an array with the classes of the single values for the record.double
getWait()
int
hashCode()
void
serialize(IValueSerializer serializer)
This method serializes this record using the given serializer.java.lang.String
toString()
Creates a string representation of this record.
This method should not be used for serialization purposes since this is not the purpose of Object's toString method.Methods inherited from class kieker.common.record.AbstractMonitoringRecord
checkArray, classForName, compareTo, createFromDeserializer, fromStringArrayToTypedArray2, getLoggingTimestamp, isNotEqual, isNotEqual, setLoggingTimestamp, typesForClass
-
Field Details
-
SIZE
public static final int SIZEDescriptive definition of the serialization size of the record.- See Also:
- Constant Field Values
-
TYPES
public static final java.lang.Class<?>[] TYPES -
VALUE_NAMES
public static final java.lang.String[] VALUE_NAMESproperty name array. -
TIMESTAMP
public static final long TIMESTAMPdefault constants.- See Also:
- Constant Field Values
-
HOSTNAME
public static final java.lang.String HOSTNAME- See Also:
- Constant Field Values
-
CPU_ID
public static final java.lang.String CPU_ID- See Also:
- Constant Field Values
-
USER
public static final double USER- See Also:
- Constant Field Values
-
SYSTEM
public static final double SYSTEM- See Also:
- Constant Field Values
-
WAIT
public static final double WAIT- See Also:
- Constant Field Values
-
NICE
public static final double NICE- See Also:
- Constant Field Values
-
IRQ
public static final double IRQ- See Also:
- Constant Field Values
-
TOTAL_UTILIZATION
public static final double TOTAL_UTILIZATION- See Also:
- Constant Field Values
-
IDLE
public static final double IDLE- See Also:
- Constant Field Values
-
-
Constructor Details
-
CPUUtilizationRecord
public CPUUtilizationRecord(long timestamp, java.lang.String hostname, java.lang.String cpuID, double user, double system, double wait, double nice, double irq, double totalUtilization, double idle)Creates a new instance of this class using the given parameters.- Parameters:
timestamp
- timestamphostname
- hostnamecpuID
- cpuIDuser
- usersystem
- systemwait
- waitnice
- niceirq
- irqtotalUtilization
- totalUtilizationidle
- idle
-
CPUUtilizationRecord
- Parameters:
deserializer
- The deserializer to use- Throws:
RecordInstantiationException
- when the record could not be deserialized
-
-
Method Details
-
serialize
This method serializes this record using the given serializer.- Parameters:
serializer
- The serializer to serialize the record with. *- Throws:
java.nio.BufferOverflowException
- If the underlying buffer has insufficient capacity to store this record
-
getValueTypes
public java.lang.Class<?>[] getValueTypes()This method delivers an array with the classes of the single values for the record.- Returns:
- The types of the values. This returned array should be treated readonly.
-
getValueNames
public java.lang.String[] getValueNames()This method delivers an array containing the value names of the record.- Returns:
- The types of the values. This returned array should be treated readonly.
-
getSize
public int getSize()This method should deliver the size of a binary representation of this record.- Returns:
- The size.
-
equals
public boolean equals(java.lang.Object obj)Performs a null-check, a this-check, and a class-check. Moreover, it checks each attribute for equality.
- Overrides:
equals
in classAbstractMonitoringRecord
-
hashCode
public int hashCode()- Overrides:
hashCode
in classAbstractMonitoringRecord
-
getTimestamp
public final long getTimestamp() -
getHostname
public final java.lang.String getHostname() -
getCpuID
public final java.lang.String getCpuID() -
getUser
public final double getUser() -
getSystem
public final double getSystem() -
getWait
public final double getWait() -
getNice
public final double getNice() -
getIrq
public final double getIrq() -
getTotalUtilization
public final double getTotalUtilization() -
getIdle
public final double getIdle() -
toString
public java.lang.String toString()Creates a string representation of this record.
This method should not be used for serialization purposes since this is not the purpose of Object's toString method.- Specified by:
toString
in interfaceIMonitoringRecord
- Overrides:
toString
in classjava.lang.Object
- Returns:
- A (human readable) string of this record.
-