Merge pull request #1 from apache/airflow-modifications

Airflow modifications of the pgbouncer exporter
tree: fc3ffc1e3ce96cac9764e23f1e7cb83798f35588
  1. cmd/
  2. internal/
  3. .drone.yml
  4. .gitignore
  5. .goreleaser.yml
  6. build_and_push.sh
  7. CHANGELOG.md
  8. docker-compose.yml
  9. Dockerfile
  10. go.mod
  11. go.sum
  12. LICENSE
  13. main.go
  14. README.md
README.md

Pgbouncer exporter

Build Status Docker Pulls Go Report Card

Prometheus exporter for Pgbouncer metrics.

Docker

Metrics are by default exposed on http server running on port 9127 under the /metrics path.

docker run \ 
  --detach \ 
  --env "DATABASE_URL=postgres://user:password@pgbouncer:6432/pgbouncer?sslmode=disable" \
  --publish "9127:9127" \
  --name "pgbouncer_exporter" \
  jbub/pgbouncer_exporter

Collectors

All of the collectors are enabled by default, you can control that using environment variables by settings it to true or false.

NameDescriptionEnv varDefault
statsPer database requests stats.EXPORT_STATSEnabled
poolsPer (database, user) connection stats.EXPORT_POOLSEnabled
databasesList of configured databases.EXPORT_DATABASESEnabled
listsList of internal pgbouncer information.EXPORT_LISTSEnabled