A pgBadger docker image.
9.1,latest(Dockerfile)
pgBadger is a fast PostgreSQL log analysis reporter.
This image contains the pgbadger executable and is meant for one-off uses. The entrypoint assumes all arguments are targeted for the pgbadger executable and additionally configures jobs parallelization using the number of cores attributed to the container and sets the --out-dir to the value of $PGBADGER_DATA.
For example, considering PGBADGER_DATA=/data and the number of available cores to the container is 4:
$ docker run --rm uphold/pgbadger /var/log/postgresql/postgresql.logWould translate to:
pgbadger /var/log/postgresql/postgresql.log --jobs 4 --outdir /dataIf you'd like to run other commands on the container, you will need to replace the entrypoint by setting it on the command line via --entrypoint.
Here is a sample usage with docker-compose that mounts the volumes from a running postgresql container and saves the report on the ./cache/pgbadger directory mounted from the host:
pgbadger:
image: uphold/pgbadger
command: /var/lib/postgresql/data/pg_log/postgresql.log
volumes:
- ./cache/pgbadger:/data
volumes_from:
- postgres:roThe uphold/pgbadger image comes in multiple flavors:
Points to the latest release available of pgBadger.
Targets a specific version of pgBadger (e.g. 9.1).
This image is officially supported on Docker version 1.11, with support for older versions provided on a best-effort basis.
License information for the software contained in this image.
License information for the uphold/docker-pgbadger docker project.