1

我想确保所有 mysql 服务器都有特定的配置(max_connections>1000,innodb_file_per_table=on)并通过 nagios 进行定期检查。

但是 nagios 插件 check_mysql_query 状态

只会读取第一行中的第一列" ... "查询的结果应该是数字

有谁知道如何设置 check_mysql_query 插件来读取输出

show variables like '%max_user_connections%;

...生产:

+----------------------+-------+
| Variable_name        | Value |
+----------------------+-------+
| max_connections      | 1000  |
+----------------------+-------+
4

1 回答 1

2

回答我自己的问题-

mysql> 选择 @@max_connections;
+-------------------+
| @@max_connections |
+-------------------+
| 第886章
+-------------------+
一组中的 1 行(0.03 秒)

成功了

于 2010-05-26T15:11:46.257 回答