debian-mirror-gitlab/doc/administration/monitoring/prometheus/postgres_exporter.md

75 lines
3.2 KiB
Markdown
Raw Normal View History

2020-05-24 23:13:21 +05:30
---
stage: Monitor
2021-04-29 21:17:54 +05:30
group: Monitor
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2020-05-24 23:13:21 +05:30
---
2021-03-11 19:13:27 +05:30
# PostgreSQL Server Exporter **(FREE SELF)**
2017-08-17 22:00:37 +05:30
2021-06-08 01:23:25 +05:30
The [PostgreSQL Server Exporter](https://github.com/prometheus-community/postgres_exporter) allows you to export various PostgreSQL metrics.
2017-08-17 22:00:37 +05:30
2021-01-03 14:25:43 +05:30
For installations from source you must install and configure it yourself.
2020-06-23 00:09:42 +05:30
2020-01-01 13:55:28 +05:30
To enable the PostgreSQL Server Exporter:
2017-08-17 22:00:37 +05:30
2020-01-01 13:55:28 +05:30
1. [Enable Prometheus](index.md#configuring-prometheus).
1. Edit `/etc/gitlab/gitlab.rb` and enable `postgres_exporter`:
2017-08-17 22:00:37 +05:30
2019-09-30 21:07:59 +05:30
```ruby
postgres_exporter['enable'] = true
```
2017-08-17 22:00:37 +05:30
2020-06-23 00:09:42 +05:30
If PostgreSQL Server Exporter is configured on a separate node, make sure that the local
address is [listed in `trust_auth_cidr_addresses`](../../postgresql/replication_and_failover.md#network-information) or the
2021-02-22 17:27:13 +05:30
exporter can't connect to the database.
2020-01-01 13:55:28 +05:30
1. Save the file and [reconfigure GitLab](../../restart_gitlab.md#omnibus-gitlab-reconfigure) for the changes to
take effect.
2017-08-17 22:00:37 +05:30
2021-02-22 17:27:13 +05:30
Prometheus begins collecting performance data from
2020-01-01 13:55:28 +05:30
the PostgreSQL Server Exporter exposed under `localhost:9187`.
2017-08-17 22:00:37 +05:30
2020-01-01 13:55:28 +05:30
## Advanced configuration
2020-06-23 00:09:42 +05:30
In most cases, PostgreSQL Server Exporter works with the defaults and you should not
need to change anything. To further customize the PostgreSQL Server Exporter,
use the following configuration options:
2020-01-01 13:55:28 +05:30
1. Edit `/etc/gitlab/gitlab.rb`:
2017-08-17 22:00:37 +05:30
2020-01-01 13:55:28 +05:30
```ruby
2020-06-23 00:09:42 +05:30
# The name of the database to connect to.
postgres_exporter['dbname'] = 'pgbouncer'
# The user to sign in as.
postgres_exporter['user'] = 'gitlab-psql'
# The user's password.
postgres_exporter['password'] = ''
# The host to connect to. Values that start with '/' are for unix domain sockets
# (default is 'localhost').
postgres_exporter['host'] = 'localhost'
# The port to bind to (default is '5432').
postgres_exporter['port'] = 5432
# Whether or not to use SSL. Valid options are:
# 'disable' (no SSL),
# 'require' (always use SSL and skip verification, this is the default value),
# 'verify-ca' (always use SSL and verify that the certificate presented by
# the server was signed by a trusted CA),
# 'verify-full' (always use SSL and verify that the certification presented
# by the server was signed by a trusted CA and the server host name matches
# the one in the certificate).
postgres_exporter['sslmode'] = 'require'
# An application_name to fall back to if one isn't provided.
postgres_exporter['fallback_application_name'] = ''
# Maximum wait for connection, in seconds. Zero or not specified means wait indefinitely.
postgres_exporter['connect_timeout'] = ''
# Cert file location. The file must contain PEM encoded data.
postgres_exporter['sslcert'] = 'ssl.crt'
# Key file location. The file must contain PEM encoded data.
postgres_exporter['sslkey'] = 'ssl.key'
# The location of the root certificate file. The file must contain PEM encoded data.
postgres_exporter['sslrootcert'] = 'ssl-root.crt'
2020-01-01 13:55:28 +05:30
```
2020-06-23 00:09:42 +05:30
1. Save the file and [reconfigure GitLab](../../restart_gitlab.md#omnibus-gitlab-reconfigure)
for the changes to take effect.