Details
-
Task
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
Description
Max_used_connections_time - The time at which Max_used_connections reached its current value. This will be helpful during the troubleshooting and helpful for the user. MySQL 8 has a similar status variable
mysql> select version();
|
+-----------+
|
| version() |
|
+-----------+
|
| 8.0.32 |
|
+-----------+
|
1 row in set (0.00 sec)
|
 |
mysql> show status like 'max_use%';
|
+---------------------------+---------------------+
|
| Variable_name | Value |
|
+---------------------------+---------------------+
|
| Max_used_connections | 20 |
|
| Max_used_connections_time | 2023-02-02 03:57:19 |
|
+---------------------------+---------------------+
|
2 rows in set (0.00 sec)
|
Attachments
Issue Links
- is part of
-
MDEV-28906 MySQL 8.0 desired compatibility
- Open