fix: 将配置中的 "standard" 修改为 "std"
This commit is contained in:
22
build/database/std/install/monitor_io.sql
Normal file
22
build/database/std/install/monitor_io.sql
Normal file
@@ -0,0 +1,22 @@
|
||||
-- MariaDB dump 10.19 Distrib 10.6.16-MariaDB, for debian-linux-gnu (x86_64)
|
||||
--
|
||||
-- Table structure for table `monitor_io`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `monitor_io`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `monitor_io` (
|
||||
`id` bigint NOT NULL AUTO_INCREMENT COMMENT 'id',
|
||||
`create_time` bigint DEFAULT '0' COMMENT '创建时间',
|
||||
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '磁盘名',
|
||||
`read` int DEFAULT '0' COMMENT '读取K',
|
||||
`write` int DEFAULT '0' COMMENT '写入K',
|
||||
`count` int DEFAULT '0' COMMENT '读写次数',
|
||||
`time` int 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='监控_磁盘IO';
|
||||
|
||||
-- Dump completed on 2025-02-14 15:26:56
|
||||
Reference in New Issue
Block a user