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

com.ideaaedi.commonds.monitor.info.SystemCpuInfo Maven / Gradle / Ivy

The newest version!
package com.ideaaedi.commonds.monitor.info;

import lombok.Data;

/**
 * 系统CPU信息
 *
 * @author JustryDeng 
 * @since 2022/7/8 17:10
 */
@Data
public class SystemCpuInfo {
    
    /** CPU core number */
    private int coreNumber;
    
    /** CPU system usage rate*/
    private String systemUsageRate;
    
    /**  CPU user usage rate */
    private String userUsageRate;
    
    /** CPU current io waiting rate */
    private String currentIoWaitRate;
    
    /** CPU current idle rate */
    private String currentIdleRate;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy