Hi This is a little guide I created on how to create Bookstack monitoring through Grafana and their MySQL Connection. First we need to modify the mysql on bookstack a bit: ```bash nano /etc/mysql/mysql.conf.d/mysqld.cnf # Or when using MariaDB: nano /etc/mysql/mariadb.conf.d/50-server.cnf ``` Replace the following line: `bind-address = 127.0.0.1` with: `bind-address = 0.0.0.0` > Use Password located in /var/www/bookstack/.env Now we need to enter the database and create a new user, allow remote access from grafana's IP and set a password, this password will later on be used in grafana, so make sure to remember it. ```bash mysql -u root -p ``` Make sure to replace the IP and Password below ```sql CREATE USER 'grafanaMonitoring'@'' IDENTIFIED BY ''; GRANT ALL PRIVILEGES ON bookstack.* TO 'grafanaMonitoring'@''; FLUSH PRIVILEGES; EXIT; ``` Possibly create a firewall Rule to allow traffic to port 3306 Now finally head over to Grafana and create a new `mysql` Connection: ```yaml Host URL: :3306 Username: grafanaMonitoring Password: Check: Skip-TLS Verification ``` Click Save & Test If a it Shows up green, then your all set and can import the dashboard. Then import the following Dashboard, and select the freshly created mysql DB Connection. https://grafana.com/grafana/dashboards/21649-bookstack/ If you have any questions feel free to ask below.