adds mysql exporter. Installs on database host

This commit is contained in:
2025-11-07 20:07:21 +01:00
parent 069f1c59ad
commit 871b42855c
8 changed files with 89 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
# 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';
```