fix: 将配置中的 "standard" 修改为 "std"

This commit is contained in:
TsMask
2025-03-20 19:40:01 +08:00
parent 135f8fc104
commit 37f725b142
123 changed files with 34 additions and 19 deletions

View 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