# Panopticon > 👁️‍🗨️ It sees all. Monitoring and observability stack. ## Maintaining Using [spud](https://forge.karnov.club/spadinastan/spud), just `spud start ./service.yml`! ## Onboarding databases Add the following to the pod in which the database runs. The port and exporter address should be included in `prometheus.yml`. ### MySQL/MariaDB ``` podman run -d \ --pod \ --replace \ prom/mysqld-exporter \ --config.my-cnf= ``` ### Postgresql ``` podman run -d \ -e DATA_SOURCE_NAME="postgresql://:@:/postgres?sslmode=disable" \ --pod \ quay.io/prometheuscommunity/postgres-exporter ```