懒羊羊
2024-01-31 e57a8990ae56f657a59c435a0613c5f7a8728003
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package com.jcdm.framework.web.domain.server;
 
import com.jcdm.common.utils.Arith;
 
/**
 * CPU相关信息
 * 
 * @author jc
 */
public class Cpu
{
    /**
     * 核心数
     */
    private int cpuNum;
 
    /**
     * CPU总的使用率
     */
    private double total;
 
    /**
     * CPU系统使用率
     */
    private double sys;
 
    /**
     * CPU用户使用率
     */
    private double used;
 
    /**
     * CPU当前等待率
     */
    private double wait;
 
    /**
     * CPU当前空闲率
     */
    private double free;
 
    public int getCpuNum()
    {
        return cpuNum;
    }
 
    public void setCpuNum(int cpuNum)
    {
        this.cpuNum = cpuNum;
    }
 
    public double getTotal()
    {
        return Arith.round(Arith.mul(total, 100), 2);
    }
 
    public void setTotal(double total)
    {
        this.total = total;
    }
 
    public double getSys()
    {
        return Arith.round(Arith.mul(sys / total, 100), 2);
    }
 
    public void setSys(double sys)
    {
        this.sys = sys;
    }
 
    public double getUsed()
    {
        return Arith.round(Arith.mul(used / total, 100), 2);
    }
 
    public void setUsed(double used)
    {
        this.used = used;
    }
 
    public double getWait()
    {
        return Arith.round(Arith.mul(wait / total, 100), 2);
    }
 
    public void setWait(double wait)
    {
        this.wait = wait;
    }
 
    public double getFree()
    {
        return Arith.round(Arith.mul(free / total, 100), 2);
    }
 
    public void setFree(double free)
    {
        this.free = free;
    }
}