MySQLが起動してからの最大同時接続数

mysql> show global status like 'Max_used_connections';
+----------------------+-------+
| Variable_name        | Value |
+----------------------+-------+
| Max_used_connections | 94    |
+----------------------+-------+
1 row in set (0.00 sec)

のようにして確認をします。

なお最大同時接続数の設定値の確認方法は以下のとおり

mysql> show variables like 'max_connections';
+-----------------+-------+
| Variable_name   | Value |
+-----------------+-------+
| max_connections | 200   |
+-----------------+-------+
1 row in set (0.00 sec)