mirror of
https://github.com/KevinMidboe/playbooks-retailor.git
synced 2026-02-12 12:29:14 +00:00
12 lines
314 B
Markdown
12 lines
314 B
Markdown
# mysqld exporter
|
|
|
|
(https://github.com/prometheus/mysqld_exporter)[https://github.com/prometheus/mysqld_exporter]
|
|
|
|
## Required Grants
|
|
|
|
```mysql
|
|
CREATE USER 'exporter'@'localhost' IDENTIFIED BY 'XXXXXXXX' WITH MAX_USER_CONNECTIONS 3;
|
|
GRANT PROCESS, REPLICATION CLIENT, SELECT ON *.* TO 'exporter'@'localhost';
|
|
```
|
|
|