解决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
相关推荐
影子240142 分钟前
Navicat导出mysql数据库表结构说明到excel、word,单表导出方式记录
数据库·mysql·excel
java_heartLake1 小时前
PostgreSQL15深度解析(从15.0-15.12)
数据库·postgresql
nuc-1273 小时前
sqli-labs学习记录8
数据库·学习·sqli-labs
余华余华4 小时前
计算机等级考试数据库三级(笔记3)
服务器·数据库·oracle
南風_入弦5 小时前
Oracle logminer详解
数据库·oracle·恢复
小安同学iter6 小时前
SpringBoot (二) 日志系统
数据库·spring boot·后端
Chandler246 小时前
Redis:事务
数据库·redis·缓存
是阿建吖!7 小时前
【MySQL】事务
数据库·mysql
Asuka077 小时前
MySQL数据库和表的操作
数据库·mysql
天上掉下来个程小白8 小时前
Redis-04.Redis常用命令-字符串常用命令
java·数据库·redis·springboot·苍穹外卖