80 lines
2.0 KiB
Java
80 lines
2.0 KiB
Java
package com.ruoyi.rocketmq.domain;
|
|
|
|
import com.ruoyi.common.core.annotation.Excel;
|
|
import com.ruoyi.common.core.web.domain.BaseEntity;
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
/**
|
|
* 系统监控信息对象 initial_system_info
|
|
*
|
|
* @author gyt
|
|
* @date 2025-08-25
|
|
*/
|
|
@Data
|
|
public class InitialSystemInfo extends BaseEntity
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** 自增主键ID */
|
|
private Long id;
|
|
|
|
/** 客户端ID */
|
|
@Excel(name = "客户端ID")
|
|
private String clientId;
|
|
|
|
/** 操作系统(如Linux、Windows等) */
|
|
@Excel(name = "操作系统(如Linux、Windows等)")
|
|
private String os;
|
|
|
|
/** 操作系统架构(如x86_64、arm64等) */
|
|
@Excel(name = "操作系统架构(如x86_64、arm64等)")
|
|
private String arch;
|
|
|
|
/** 最大进程数 */
|
|
@Excel(name = "最大进程数")
|
|
private Long maxProc;
|
|
|
|
/** 正在运行的进程数 */
|
|
@Excel(name = "正在运行的进程数")
|
|
private Long runProcNum;
|
|
|
|
/** 登录用户数 */
|
|
@Excel(name = "登录用户数")
|
|
private Long usersNum;
|
|
|
|
/** 硬盘总可用空间(GB) */
|
|
@Excel(name = "硬盘总可用空间(GB)")
|
|
private BigDecimal diskSizeTotal;
|
|
|
|
/** 系统启动时间(Unix时间戳) */
|
|
@Excel(name = "系统启动时间(Unix时间戳)")
|
|
private Long bootTime;
|
|
|
|
/** 系统描述(如Linux 5.4.0-80-generic) */
|
|
@Excel(name = "系统描述(如Linux 5.4.0-80-generic)")
|
|
private String uname;
|
|
|
|
/** 系统本地时间(如2023-08-15 14:30:00) */
|
|
@Excel(name = "系统本地时间(如2023-08-15 14:30:00)")
|
|
private String localTime;
|
|
|
|
/** 系统正常运行时间(秒) */
|
|
@Excel(name = "系统正常运行时间(秒)")
|
|
private Long upTime;
|
|
|
|
/** 进程数 */
|
|
@Excel(name = "进程数")
|
|
private BigDecimal procNum;
|
|
|
|
/** 记录时间戳(Unix时间戳) */
|
|
@Excel(name = "记录时间戳(Unix时间戳)")
|
|
private Long timeStamp;
|
|
|
|
private String uuid;
|
|
|
|
private String startTime;
|
|
private String endTime;
|
|
}
|