Expanding on the metrics exposed by the synapse exporter and the node exporter, the playbook enables the postgres exporter that exposes more detailed information about what’s happening on your postgres database.
To enable the postgres exporter, add the following configuration to your inventory/host_vars/matrix.example.com/vars.yml file:
prometheus_postgres_exporter_enabled: true
After configuring the playbook, run it with playbook tags as below:
ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start
The shortcut commands with just program are also available: just run-tags install-all,start or just run-tags setup-all,start
just run-tags install-all,start is useful for maintaining your setup quickly when its components remain unchanged. If you adjust your vars.yml to remove other components, you’d need to run just run-tags setup-all,start, or these components will still remain installed. For more information about just shortcuts, take a look at this page: Running just commands
| Name | Description |
|---|---|
prometheus_postgres_exporter_enabled |
Enable the postgres prometheus exporter. This sets up the docker container, connects it to the database and adds a ‘job’ to the prometheus config which tells prometheus about this new exporter. The default is ‘false’ |
prometheus_postgres_exporter_database_username |
The ‘username’ for the user that the exporter uses to connect to the database. The default is ‘matrix_prometheus_postgres_exporter’ |
prometheus_postgres_exporter_database_password |
The ‘password’ for the user that the exporter uses to connect to the database. By default, this is auto-generated by the playbook |
prometheus_postgres_exporter_container_labels_traefik_enabled |
If set to true, exposes the Postgres exporter metrics on https://matrix.example.com/metrics/postgres-exporter for usage with an external Prometheus server. To password-protect the metrics, see matrix_metrics_exposure_http_basic_auth_users on that other documentation page. |