-- MariaDB dump 10.19 Distrib 10.6.16-MariaDB, for debian-linux-gnu (x86_64) -- -- Table structure for table `monitor_base` -- DROP TABLE IF EXISTS `monitor_base`; CREATE TABLE `monitor_base` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT 'id', `create_time` bigint DEFAULT '0' COMMENT '创建时间', `cpu` float DEFAULT '0' COMMENT 'cpu使用率', `load_usage` float DEFAULT '0' COMMENT 'cpu平均使用率', `cpu_load1` float DEFAULT '0' COMMENT 'cpu使用1分钟', `cpu_load5` float DEFAULT '0' COMMENT 'cpu使用5分钟', `cpu_load15` float DEFAULT '0' COMMENT 'cpu使用15分钟', `memory` float DEFAULT '0' COMMENT '内存使用率', `ne_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '网元类型', `ne_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '网元ID', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='监控_基本信息'; -- Dump completed on 2025-02-14 15:26:56