ansible-taler-exchange

Ansible playbook to deploy a production Taler Exchange
Log | Files | Refs | Submodules | README | LICENSE

prometheus-postgres-exporter (723B)


      1 # Connection string for the PostgreSQL database. You need to either connect as
      2 # superuser, or create a user with enough rights, as described in
      3 # /usr/share/doc/prometheus-postgres-exporter/README.Debian
      4 
      5 # DATA_SOURCE_NAME='postgresql://login:password@hostname:port/'
      6 DATA_SOURCE_NAME='user=prometheus host=/run/postgresql dbname=postgres'
      7 # DATA_SOURCE_NAME='user=prometheus host=/run/postgresql dbname=taler-exchange'
      8 
      9 # Set the command-line arguments to pass to the server.
     10 # Due to shell escaping, to pass backslashes for regexes, you need to double
     11 # them (\\d for \d). If running under systemd, you need to double them again
     12 # (\\\\d to mean \d), and escape newlines too.
     13 ARGS="--web.listen-address=127.0.0.1:9187"