pere3 / pgbackrest_exporter

Prometheus exporter for pgBackRest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pgBackRest Exporter

Actions Status Coverage Status Go Report Card

Prometheus exporter for pgBackRest.

The metrics are collected based on result of pgbackrest info --output json command. By default, the metrics are collected for all stanzas received by command. You can specify stanzas to collect metrics. You need to run exporter on the same host where pgBackRest was installed or inside Docker.

Collected metrics

The metrics provided by the client.

  • pgbackrest_stanza_status - current stanza status.

    Labels: stanza.

  • pgbackrest_repo_status - current repository status.

    Labels: cipher, repo_key, stanza.

    Values description for stanza and repo statuses:

    • 0: ok,
    • 1: missing stanza path,
    • 2: no valid backups,
    • 3: missing stanza data,
    • 4: different across repos,
    • 5: database mismatch across repos,
    • 6: requested backup not found,
    • 99: other.
  • pgbackrest_backup_info - backup info.

    Labels: backrest_ver, backup_name, backup_type, database_id, lsn_start, lsn_stop, pg_version, prior, repo_key, stanza, wal_start, wal_stop.

    Values description:

    • 1 - info about backup is exist.
  • pgbackrest_backup_duration_seconds - backup duration in seconds.

    Labels: backup_name, backup_type, database_id, repo_key, stanza, start_time, stop_time.

  • pgbackrest_backup_size_bytes - full uncompressed size of the database.

    Labels: backup_name, backup_type, database_id, repo_key, stanza.

  • pgbackrest_backup_delta_bytes - amount of data in the database to actually backup.

    Labels: backup_name, backup_type, database_id, repo_key, stanza.

  • pgbackrest_backup_repo_size_bytes - full compressed files size to restore the database from backup.

    Labels: backup_name, backup_type, database_id, repo_key, stanza.

  • pgbackrest_backup_repo_delta_bytes - compressed files size in backup.

    Labels: backup_name, backup_type, database_id, repo_key, stanza.

  • pgbackrest_backup_error_status - backup error status.

    Labels: backup_name, backup_type, database_id, repo_key, stanza.

    Values description:

    • 0 - backup doesn't contain page checksum errors,
    • 1 - backup contains one or more page checksum errors. To display the list of errors, you need manually run the command like pgbackrest info --stanza stanza --set backup_name --repo repo_key.
  • pgbackrest_backup_databases - number of databases in backup.

    Labels: backup_name, backup_type, database_id, repo_key, stanza.

  • pgbackrest_backup_since_last_completion_seconds - seconds since the last completed full, differential or incremental backup.

    Labels: backup_type, stanza.

  • pgbackrest_backup_last_databases - number of databases in the last full, differential or incremental backup.

    Labels: backup_type, stanza.

  • pgbackrest_wal_archive_status - current WAL archive status.

    Labels: database_id, pg_version, repo_key, stanza, wal_max, wal_min.

    Values description:

    • 0 - any one of WALMin and WALMax have empty value, there is no correct information about WAL archiving,
    • 1 - both WALMin and WALMax have no empty values, there is correct information about WAL archiving.
  • pgbackrest_exporter_info - information about pgBackRest exporter.

    Labels: version.

Compatibility with pgBackRest versions

All metrics are collected for pgBackRest >= v2.41.

For earlier versions, some metrics may not be collected or have insignificant label values:

  • pgBackRest < v2.41

    The following metric will be absent:

    • pgbackrest_backup_databases,
    • pgbackrest_backup_last_databases.
  • pgBackRest < v2.38

    For pgbackrest_backup_info metric labels will be lsn_start="" and lsn_stop="".

  • pgBackRest < v2.36

    The following metric will be absent: pgbackrest_backup_error_status.

  • pgBackRest < v2.32

    The following metric will be absent: pgbackrest_repo_status. For other metrics label will be repo_key="0".

Getting Started

Building and running

git clone https://github.com/woblerr/pgbackrest_exporter.git
cd pgbackrest_exporter
make build
./pgbackrest_exporter <flags>

Available configuration flags:

./pgbackrest_exporter --help
usage: pgbackrest_exporter [<flags>]

Flags:
  -h, --help                     Show context-sensitive help (also try --help-long and --help-man).
      --prom.port="9854"         Port for prometheus metrics to listen on.
      --prom.endpoint="/metrics"  
                                 Endpoint used for metrics.
      --prom.web-config=""       [EXPERIMENTAL] Path to config yaml file that can enable TLS or authentication.
      --collect.interval=600     Collecting metrics interval in seconds.
      --backrest.config=""       Full path to pgBackRest configuration file.
      --backrest.config-include-path=""  
                                 Full path to additional pgBackRest configuration files.
      --backrest.stanza-include="" ...  
                                 Specific stanza for collecting metrics. Can be specified several times.
      --backrest.stanza-exclude="" ...  
                                 Specific stanza to exclude from collecting metrics. Can be specified several times.
      --backrest.backup-type=""  Specific backup type for collecting metrics. One of: [full, incr, diff].
      --backrest.database-count  Exposing the number of databases in backups.
      --backrest.database-count-latest  
                                 Exposing the number of databases in the latest backups.
      --backrest.verbose-wal     Enable additional labels for WAL metrics.
      --log.level=info           Only log messages with the given severity or above. One of: [debug, info, warn, error]
      --log.format=logfmt        Output format of log messages. One of: [logfmt, json]

Additional description of flags.

Custom config and/or custom config-include-path for pgbackrest command can be specified via --backrest.config and --backrest.config-include-path flags. Full paths must be specified.
For example, --backrest.config=/tmp/pgbackrest.conf and/or --backrest.config-include-path=/tmp/pgbackrest/conf.d.

Custom stanza for collecting metrics can be specified via --backrest.stanza-include flag. You can specify several stanzas.
For example, --backrest.stanza-include=demo1 --backrest.stanza-include=demo2.
For this case, metrics will be collected only for demo1 and demo2 stanzas.

Custom stanza to exclude from collecting metrics can be specified via --backrest.stanza-exclude flag. You can specify several stanzas.
For example, --backrest.stanza-exclude=demo1 --backrest.stanza-exclude=demo2.
For this case, metrics will not be collected for demo1 and demo2 stanzas.
If the same stanza is specified for include and exclude flags, then metrics for this stanza will not be collected. The flag --backrest.stanza-exclude has a higher priority.
For example, --backrest.stanza-include=demo1 --backrest.stanza-exclude=demo1.
For this case, metrics will not be collected for demo1 stanza.

When flag --backrest.verbose-wal is specified - WALMin and WALMax are added as metric labels.
This creates new different time series on each WAL archiving.

When --log.level=debug is specified - information of values and labels for metrics is printing to the log.

The flag --prom.web-config allows to specify the path to the configuration for TLS and/or basic authentication.
The description of TLS configuration and basic authentication can be found at exporter-toolkit/web.

Custom backup type for collecting metrics can be specified via --backrest.backup-type flag. Valid values: full, incr or diff.
For example, --backrest.backup-type=full.
For this case, metrics will be collected only for full backups.
This flag works for pgBackRest >= v2.38.
When parameter value is incr or diff, the following metrics will not be collected: pgbackrest_backup_since_last_completion_seconds, pgbackrest_backup_last_databases.
For earlier pgBackRest versions there will be an error like: option 'type' not valid for command 'info'.

When flag --backrest.database-count is specified - information about the number of databases in backup is collected.
This flag works for pgBackRest >= v2.41.
For earlier pgBackRest versions there will be an error like: option 'set' is currently only valid for text output.
For a significant numbers of stanzas and backups, this may require much more additional time to collect metrics. Each stanza requires pgBackRest execution for backups to get data.

When flag --backrest.database-count-latest is specified - information about the number of databases in the last full, differential or incremental backup is collected.
This flag works for pgBackRest >= v2.41.
For earlier pgBackRest versions there will be an error like: option 'set' is currently only valid for text output.
For a significant number of stanzas, this may require additional time to collect metrics. Each stanza requires pgBackRest execution for the last full, differential or incremental backups to get data.

Building and running docker

By default, pgBackRest version is 2.41. Another version can be specified via arguments. For base image used docker-pgbackrest image.

Environment variables supported by this image:

  • all environment variables from docker-pgbackrest image;
  • EXPORTER_ENDPOINT - metrics endpoint, default /metrics;
  • EXPORTER_PORT - port for prometheus metrics to listen on, default 9854;
  • STANZA_INCLUDE - specific stanza for collecting metrics, default "";
  • STANZA_EXCLUDE - specific stanza to exclude from collecting metrics, default "";
  • COLLECT_INTERVAL - collecting metrics interval in seconds, default 600;
  • BACKUP_TYPE - specific backup type for collecting metrics, default "";
  • VERBOSE_WAL - enabling additional labels for WAL metrics, default false;
  • DATABASE_COUNT - exposing the number of databases in backups, default false;
  • DATABASE_COUNT_LATEST - exposing the number of databases in the latest backups, default false.

Pull

Change tag to the release number.

  • Docker Hub:
docker pull woblerr/pgbackrest_exporter:tag
docker pull woblerr/pgbackrest_exporter:tag-alpine
  • GitHub Registry:
docker pull ghcr.io/woblerr/pgbackrest_exporter:tag
docker pull ghcr.io/woblerr/pgbackrest_exporter:tag-alpine

Build

make docker
make docker-alpine

or for specific pgBackRest version

docker build -f Dockerfile --build-arg BACKREST_VERSION=2.34 -t pgbackrest_exporter .
docker build -f Dockerfile --build-arg BACKREST_VERSION=2.34-alpine -t pgbackrest_exporter-alpine .

Run

You will need to mount the necessary directories or files inside the container.

Simple run:

docker run -d \
    --name pgbackrest_exporter \
    -p 9854:9854 \
    -v  /etc/pgbackrest/pgbackrest.conf:/etc/pgbackrest/pgbackrest.conf \ 
    pgbackrest_exporter

With some enviroment variables:

docker run -d \
    --name pgbackrest_exporter \
    -e BACKREST_USER=postgres \
    -e BACKREST_UID=1001 \
    -e BACKREST_GROUP=postgres \
    -e BACKREST_GID=1001 \
    -e TZ=America/Chicago \
    -e COLLECT_INTERVAL=60 \
    -p 9854:9854 \
    -v  /etc/pgbackrest/pgbackrest.conf:/etc/pgbackrest/pgbackrest.conf \
    pgbackrest_exporter

For specific stanza:

docker run -d \
    --name pgbackrest_exporter \
    -e STANZA_INCLUDE=demo \
    -p 9854:9854 \
    -v  /etc/pgbackrest/pgbackrest.conf:/etc/pgbackrest/pgbackrest.conf \
    pgbackrest_exporter

If you want to specify several stanzas for collecting metrics, you can run containers on different ports:

docker run -d \
    --name pgbackrest_exporter_demo1 \
    -e STANZA_INCLUDE=demo1 \
    -p 9854:9854 \
    -v  /etc/pgbackrest/pgbackrest.conf:/etc/pgbackrest/pgbackrest.conf \
    pgbackrest_exporter

docker run -d \
    --name pgbackrest_exporter_demo2 \
    -e STANZA_INCLUDE=demo2 \
    -p 9855:9854 \
    -v  /etc/pgbackrest/pgbackrest.conf:/etc/pgbackrest/pgbackrest.conf \
    pgbackrest_exporter

To exclude specific stanza:

docker run -d \
    --name pgbackrest_exporter \
    -e STANZA_EXCLUDE=demo \
    -p 9854:9854 \
    -v  /etc/pgbackrest/pgbackrest.conf:/etc/pgbackrest/pgbackrest.conf \
    pgbackrest_exporter

For specific backup type:

docker run -d \
    --name pgbackrest_exporter \
    -e BACKUP_TYPE=full \
    -p 9854:9854 \
    -v  /etc/pgbackrest/pgbackrest.conf:/etc/pgbackrest/pgbackrest.conf \
    pgbackrest_exporter

With exposing the number of databases in backups:

docker run -d \
    --name pgbackrest_exporter \
    -e DATABASE_COUNT=true \
    -p 9854:9854 \
    -v  /etc/pgbackrest/pgbackrest.conf:/etc/pgbackrest/pgbackrest.conf \
    pgbackrest_exporter

With exposing the number of databases in the latest backups:

docker run -d \
    --name pgbackrest_exporter \
    -e DATABASE_COUNT_LATEST=true \
    -p 9854:9854 \
    -v  /etc/pgbackrest/pgbackrest.conf:/etc/pgbackrest/pgbackrest.conf \
    pgbackrest_exporter

To communicate with pgBackRest TLS server you need correct pgBackRest config, for example:

[demo]
pg1-path=/var/lib/postgresql/13/main

[global]
repo1-host=backup
repo1-host-ca-file=/etc/pgbackrest/cert/pgbackrest-test-ca.crt
repo1-host-cert-file=/etc/pgbackrest/cert/pgbackrest-test-client.crt
repo1-host-key-file=/etc/pgbackrest/cert/pgbackrest-test-client.key
repo1-host-type=tls
repo1-retention-diff=2
repo1-retention-full=2

And run:

docker run -d \
    --name pgbackrest_exporter \
    -e BACKREST_UID=1001 \
    -e BACKREST_GID=1001 \
    -p 9854:9854 \
    -v /etc/pgbackrest/pgbackrest.conf:/etc/pgbackrest/pgbackrest.conf \
    -v /etc/pgbackrest/cert:/etc/pgbackrest/cert \
    pgbackrest_exporter

Running as systemd service

  • Register pgbackrest_exporter (already builded, if not - exec make build before) as a systemd service:
 make make prepare-service

Validate prepared file pgbackrest_exporter.service and run:

sudo make install-service
  • View service logs:
journalctl -u pgbackrest_exporter.service
  • Delete systemd service:
sudo make remove-service

Manual register systemd service:

cp pgbackrest_exporter.service.template pgbackrest_exporter.service

In file pgbackrest_exporter.service replace {PATH_TO_FILE} to full path to pgbackrest_exporter.

sudo cp pgbackrest_exporter.service /etc/systemd/system/pgbackrest_exporter.service
sudo systemctl daemon-reload
sudo systemctl enable pgbackrest_exporter.service
sudo systemctl restart pgbackrest_exporter.service
systemctl -l status pgbackrest_exporter.service

Running tests

Run the unit tests:

make test

Run the end-to-end tests:

make test-e2e

About

Prometheus exporter for pgBackRest

License:MIT License


Languages

Language:Go 90.8%Language:Shell 3.6%Language:Makefile 3.3%Language:Dockerfile 2.3%