# Kylin-tuning **Repository Path**: high-minded-git/kylin-tuning ## Basic Information - **Project Name**: Kylin-tuning - **Description**: 银河麒麟操作系统 v10sp3 自动调优 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-05-28 - **Last Updated**: 2025-05-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Kylin-tuning ### 运行前置条件 - python 3.7.9 - ```bash # 安装依赖文件 pip install -r requirements.txt ``` - 按如下方式配置并运行`InfluxDB`数据库: ```bash wget https://dl.influxdata.com/influxdb/releases/influxdb-1.8.10.x86_64.rpm sudo yum -y localinstall influxdb-1.8.10.x86_64.rpm influxd ``` ### 目录结构 ``` . ├── ai # ai识别业务场景,自动调优 ├── bpf # eBPF统计IO栈各阶段数据 ├── collection # 系统性能收集器 │   ├── common.py │   ├── cpu │   ├── disk │   ├── memory │   └── network ├── config # 配置文件 ├── db # InfluxDB时序数据库 ├── gateway # Flask后端接口 ├── log # 日志 ├── main.py # 主文件入口 ├── numa # numa调整内存访问 ├── README.md ├── requirements.txt # 项目依赖文件 ├── scripts # shell脚本文件 ├── tests # 测试文件 ├── tuning # 自动调优部分 ├── utils # 工具类、工具函数 └── web # 前端可视化界面 ```