解决orzdba采集数据库性能指标不全的问题

背景

调试数据库的性能指标采集工具orzdba,发现它生成的指标文件内容与正常的不全,如文件 /tmp/orzdba/192.168.1.1_3306_20250327.log 的内容如下:

python 复制代码
--------                                -QPS-    -TPS-            -Hit%- --------------threads--------------- -------bytes------ 
  time  |  ins&rep      upd      del      sel     iudr|     lor      hit|      run      con      cre      cac|     recv     send|
01:42:42|        0        0        0        0        0|       0   100.00|        1        1        0       12|    1.03K    1.28K|
01:42:43|        0        0        0        0        0|       0   100.00|        1        1        0       12|    1.06K    1.32K|
01:42:44|        0        0        0        0        0|       0   100.00|        1        1        0       12|    1.05K    1.32K|
01:42:45|        0        0        0        0        0|       0   100.00|        1        1        0       12|    1.06K    1.32K|
01:42:46|        0        0        0        0        0|       0   100.00|        1        1        0       12|    1.06K    1.32K|
01:42:47|        0        0        0        0        0|       0   100.00|        1        1        0       12|    1.06K    1.32K|
01:42:48|        0        0        0        0        0|       0   100.00|        1        1        0       12|    1.06K    1.32K|

正常的采集指标内容为:

python 复制代码
-------- ----------load-avg--------- ----cpu-usage--- ----------------------------------------io-usage----------------------------------------                                -QPS-    -TPS-            -Hit%- ---------innodb rows status--------- -------innodb bp pages status------- ----------innodb data status-------- ----innodb log----       his ----log(byte)----     read ------query------ --------------threads--------------- -------bytes------ ------innodb row lock------ ----table lock---- 
  time  |       1m       5m      15m| usr sys idl iow|      r/s      w/s     rB/s     wB/s     r_rt     w_rt    queue    await    svctm %util|  ins&rep      upd      del      sel     iudr|     lor      hit|      ins      upd      del     read|     data     free    dirty    flush|    reads   writes     read  written|   fsyncs  written|     list   uflush    uckpt     view   inside      que|      run      con      cre      cac|     recv     send| cur_wait     time    waits|      imd     wait|
01:26:02|     1.72     3.76     5.59|   2   0  98   0|     0.40     5.19    5.95K   73.55K   230.77    23.95      0.0      0.0      0.2   0.1|
01:26:03|     1.72     3.76     5.59|   4   0  96   0|     0.59     4.41    8.50K   64.34K   210.53    21.13      0.0      0.0      0.3   0.1|
01:26:04|     1.72     3.76     5.59|   3   0  97   0|     0.62     4.54    9.35K   52.31K      200    20.55      0.0      0.0      0.2   0.1|
01:26:05|     1.82     3.75     5.57|   5   1  94   0|     0.25     5.16    3.16K   83.88K      250    24.10      0.0      0.0      0.2   0.1|
01:26:06|     1.82     3.75     5.57|   2   0  98   0|     0.25     1.77    3.88K   36.65K      250    35.09      0.0      0.1      0.4   0.1|

排查:

单独跑了一下脚本,发现有报错:

python 复制代码
# /usr/bin/perl /export/servers/orzdba 3306 -monitor -nocolor
sh: lvdisplay: command not found
sh: lvdisplay: command not found
awk: cmd. line:1: {if($1== && $2==) print $3}
awk: cmd. line:1:          ^ syntax error
awk: cmd. line:1: {if($1== && $2==) print $3}
awk: cmd. line:1:                 ^ syntax error

原来是系统内缺少lvm2包,安装命令如下:

python 复制代码
yum install lvm2
相关推荐
Linda L1 小时前
Flink CDC将MySQL数据同步到数据湖
大数据·数据库·分布式·mysql·flink·kafka
子午谷1 小时前
mysql离线安装教程
数据库·mysql
zeijiershuai1 小时前
MySQL-多表关系、多表查询
数据库·mysql
小鸡脚来咯1 小时前
MySQL日志
运维·数据库·mysql
岁忧2 小时前
LeetCode 高频 SQL 50 题(基础版) 之 【高级查询和连接】· 上
数据库·sql·leetcode
异常君3 小时前
Java 应用如何防御 SYN Flood 攻击?
java·数据库·代码规范
珹洺3 小时前
数据库系统概论(十六)数据库安全性(安全标准,控制,视图机制,审计与数据加密)
数据库·安全·oracle
清风细雨_林木木3 小时前
数据库 MongoDB (NoSQL) 与 MySQL (SQL) 的写法对比
数据库·mongodb·nosql
小陈又菜3 小时前
SQL Transactions(事务)、隔离机制
数据库·sql·事务·隔离机制
forestsea3 小时前
PostgreSQL 安全纵深防御:从权限到加密
数据库·安全·postgresql