showinnodbstatus只是其一种模式的直接展现,并且只能交互式开启,无法自动循环捕获信息innodb状态信息输出到err日志在如何库下都可以,推荐在test数据库下创建
show innodb status只是其一种模式的直接展现,并且只能交互式开启,无法自动循环捕获信息
innodb状态信息输出到 err 日志 在如何 库 下都可以,推荐在 test 数据库下创建如下表
mysql> create table innodb_monitor(a int) engine=innodb;
Query OK, 0 rows affected (0.09 sec)
mysql> create table innodb_tablespace_monitor(a int) engine=innodb;
Query OK, 0 rows affected (0.12 sec)
mysql> create table innodb_lock_monitor(a int) engine=innodb;
Query OK, 0 rows affected (0.13 sec)
mysql> create table innodb_table_monitor(a int) engine=innodb;
Query OK, 0 rows affected (0.09 sec)
创建表后innodb会每过15秒输出一次innodb状态信息到error log,通过删除表停止该monitor功能。
不包含独立表空间信息。
我监控采用的是zabbix,美国空间,采用agent 被动方式向zabbix server传送数据。脚本为shell,采用show innodb status 重定向
核心代码:
检测是否为新的死锁信息:
New_deadlock() {
new_line_tile=$(grep -n "LATEST DETECTED DEADLOCK" $1 | cut -d ':' -f 1)
new_line_time=$(echo "$new_line_tile + 2" | bc)
last_dect_time="$(head -n $new_line_time $1 | tail -n 1) ###截取死锁发生的时间戳
[ -e $2 ] || cp $1 $2 #拿这次输出信息,和上次输出信息对比;如果是第一次检测,将这次输出信息cp作为上次输出信息
old_line_tile=$(grep -n "LATEST DETECTED DEADLOCK" $2 | cut -d ':' -f 1)
if [ -z $old_line_tile ];then
echo 1
mv $1 $2 ##判断上次输出是否为死锁,不是的话,直接返回1 表明最近一次是新的死锁。并将 此次输出信息重命名
exit 1
else ##否则对比两次的时间戳
old_line_time=$(echo "$old_line_tile + 2" | bc)
old_last_dect_time="$(head -n $old_line_time $2 | tail -n 1)"
mv $1 $2 #输出信息为下一次检测做准备
if [ "$last_dect_time" = "$old_last_dect_time" ];then
echo 0
else
cp $1 /tmp/$1_detail #已判定为死锁,需要保留作案信息
echo 1
fi
fi
}
deadlock_check() {
case $1 in
1)
$MYSQL_BIN -u $user -p$password -S $SOC1 -e "show engine innodb status\G" > /tmp/innodb_status_1_$dthm
have_dead_lock=$(grep -c "LATEST DETECTED DEADLOCK" /tmp/innodb_status_1_$dthm)
#判断这次检测是否包含死锁信息,包含的话 让 New_dead_lock 做死锁对比否则 返回0
if [ $have_dead_lock -gt 0 ];then
New_deadlock /tmp/innodb_status_1_$dthm /tmp/innodb_status_1_$dt
else
echo 0
fi;;
2)
$MYSQL_BIN -u $user -p$password -S $SOC2 -e "show engine innodb status\G" > /tmp/innodb_status_2_$dthm
have_dead_lock=$(grep -c "LATEST DETECTED DEADLOCK" /tmp/innodb_status_2_$dthm)
if [ $have_dead_lock -gt 0 ];then
New_deadlock /tmp/innodb_status_2_$dthm /tmp/innodb_status_2_$dt
else
echo 0
fi;;
3)
$MYSQL_BIN -u $user -p$password -S $SOC3 -e "show engine innodb status\G" > /tmp/innodb_status_3_$dthm
have_dead_lock=$(grep -c "LATEST DETECTED DEADLOCK" /tmp/innodb_status_3_$dthm)
if [ $have_dead_lock -gt 0 ];then
New_deadlock /tmp/innodb_status_3_$dthm /tmp/innodb_status_3_$dt
else
echo 0
fi;;
4)
$MYSQL_BIN -u $user -p$password -S $SOC4 -e "show engine innodb status\G" > /tmp/innodb_status_4_$dthm
have_dead_lock=$(grep -c "LATEST DETECTED DEADLOCK" /tmp/innodb_status_4_$dthm)
if [ $have_dead_lock -gt 0 ];then
New_deadlock /tmp/innodb_status_4_$dthm /tmp/innodb_status_4_$dt
else
echo 0
fi;;
*)
echo $ERROR
exit 1;;
esac
}
case $1中的变量是针对不同机器上多个实例的情况,传送socket参数。
本文出自 “My DBA life” 博客,请务必保留此出处

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SublimeText3 Linux new version
SublimeText3 Linux latest version

Dreamweaver Mac version
Visual web development tools
