linux 使用 MySQL Performance Schema 和 Prometheus + Grafana 来监控 MySQL 性能

🎯 方案 1:使用 MySQL Performance Schema

Performance Schema 是 MySQL 内置的性能监控工具,适合排查慢查询、锁等待、资源使用等问题。

步骤 1:启用 Performance Schema

1️⃣ 在 MySQL 配置文件中(通常是 /etc/mysql/my.cnf/etc/mysql/mysql.conf.d/mysqld.cnf),启用 Performance Schema

ini 复制代码
[mysqld]
performance_schema = ON

2️⃣ 重启 MySQL 服务:

bash 复制代码
sudo systemctl restart mysql

3️⃣ 登录到 MySQL,确认 Performance Schema 已启用:

bash 复制代码
mysql -u root -p

执行以下命令:

sql 复制代码
SHOW VARIABLES LIKE 'performance_schema';

步骤 2:查询常用的 Performance Schema 表

1️⃣ 查看 活跃的连接和查询

sql 复制代码
SELECT * FROM performance_schema.events_statements_current;

2️⃣ 查看 慢查询统计

sql 复制代码
SELECT * FROM performance_schema.events_statements_summary_by_digest ORDER BY COUNT_STAR DESC LIMIT 10;

3️⃣ 查看 锁等待时间

sql 复制代码
SELECT * FROM performance_schema.events_waits_summary_global_by_event_name;

🎯 方案 2:使用 Prometheus + Grafana 监控 MySQL

步骤 1:安装 Prometheus 和 Grafana

➡️ 1. 在 Linux 上安装 Prometheus
bash 复制代码
sudo apt update
sudo apt install prometheus
➡️ 2. 安装 Grafana
bash 复制代码
sudo apt install grafana

启动 Grafana:

bash 复制代码
sudo systemctl start grafana-server

访问 Grafana Web 界面:

复制代码
http://localhost:3000

默认登录:

  • 用户名:admin
  • 密码:admin

步骤 2:安装 MySQL Exporter

Prometheus 需要一个 MySQL Exporter 来收集 MySQL 的性能数据。

➡️ 1. 下载并配置 MySQL Exporter
bash 复制代码
wget https://github.com/prometheus/mysqld_exporter/releases/download/v0.14.0/mysqld_exporter-0.14.0.linux-amd64.tar.gz
tar xzf mysqld_exporter-0.14.0.linux-amd64.tar.gz
cd mysqld_exporter-0.14.0.linux-amd64
➡️ 2. 创建 MySQL 用户

在 MySQL 中创建一个用户来访问 Performance Schema

sql 复制代码
CREATE USER 'exporter'@'localhost' IDENTIFIED BY 'your_password';
GRANT PROCESS, REPLICATION CLIENT, SELECT ON *.* TO 'exporter'@'localhost';
FLUSH PRIVILEGES;
➡️ 3. 启动 MySQL Exporter
bash 复制代码
./mysqld_exporter --config.my-cnf="/path/to/.my.cnf"

步骤 3:配置 Prometheus

编辑 Prometheus 的配置文件 prometheus.yml,添加 MySQL Exporter:

yaml 复制代码
scrape_configs:
  - job_name: 'mysql'
    static_configs:
      - targets: ['localhost:9104']

重启 Prometheus

bash 复制代码
sudo systemctl restart prometheus

步骤 4:配置 Grafana

1️⃣ 在 Grafana Web 界面中,添加 Prometheus 作为数据源。

2️⃣ 导入现成的 MySQL 监控仪表板 模板(ID: 7362)。


最终效果

  • 通过 Grafana,可以实时查看 MySQL 查询性能、慢查询、连接数、缓存命中率、磁盘 I/O 等关键指标。

  • 可以设置告警,及时发现 查询延迟、磁盘空间不足 等问题。


⚙️ 常用 Prometheus + Grafana MySQL 监控指标

指标 说明
mysql_global_status 全局 MySQL 状态
mysql_up MySQL 是否正常运行
mysql_global_variables MySQL 全局变量
mysql_queries_per_second 每秒查询次数
mysql_slow_queries 慢查询次数

🛠 总结

方案 适用场景
Performance Schema 轻量级性能分析工具
Prometheus + Grafana 实时监控和告警
相关推荐
小成202303202651 小时前
Linux高级02
linux·开发语言
mounter6251 小时前
【硬核前沿】CXL 深度解析:重塑数据中心架构的“高速公路”,Linux 内核如何应对挑战?-- CXL 协议详解与 LSF/MM 最新动态
linux·服务器·网络·架构·kernel
++==2 小时前
Linux 进程间通信与线程同步技术详解:IPC 机制、线程 API、同步工具与经典同步问题
linux
特长腿特长2 小时前
centos、ubantu系列机的用户和用户组的结构是什么?具体怎么配置?用户组权限怎么使用?这篇文章持续更新,帮助你复习linux的基础知识
linux·运维·centos
zzzyyy5382 小时前
Linux环境变量
linux·运维·服务器
pluvium272 小时前
记对 xonsh shell 的使用, 脚本编写, 迁移及调优
linux·python·shell·xonsh
无级程序员2 小时前
centos7 安装 llvm-toolset-7-clang出错的问题解决
linux·centos
CHHC18803 小时前
NetCore树莓派桌面应用程序
linux·运维·服务器
云栖梦泽4 小时前
Linux内核与驱动:9.Linux 驱动 API 封装
linux·c++
si莉亚6 小时前
ROS2安装EVO工具包
linux·开发语言·c++·开源