You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it would be generally useful to add a default monitoring user with minimal permissions that cover a standard range of MySQL collection agents. Here is a set pulled from the datadog docs:
mysql> GRANT REPLICATION CLIENT ON *.* TO 'monitoring'@'localhost' WITH MAX_USER_CONNECTIONS 5;
mysql> GRANT PROCESS ON *.* TO 'monitoring'@'localhost';
For MySQL 8.0+ set max_user_connections with:
mysql> ALTER USER 'monitoring'@'localhost' WITH MAX_USER_CONNECTIONS 5;
mysql> GRANT SELECT ON performance_schema.* TO 'monitoring'@'localhost';
The text was updated successfully, but these errors were encountered:
I think it would be generally useful to add a default monitoring user with minimal permissions that cover a standard range of MySQL collection agents. Here is a set pulled from the datadog docs:
The text was updated successfully, but these errors were encountered: