🚀 New Feature: Prometheus Metrics Integration in pgqueuer!
Im thrilled to unveil a new enhancement to the `pgqueuer` library — **Prometheus Metrics Integration**! This feature brings monitoring capabilities, enabling you to track and analyze real-time performance metrics of your job queues seamlessly.
**Quick Setup Using Docker:**
Setting up the Prometheus metrics service is straightforward using Docker and can be done in just a few steps. Here's how:
1. **Pull the Docker Image**:
Ensure you have the latest version of the Prometheus service by pulling the image from the GitHub Container Registry:
bash
Pull the latest image
docker pull ghcr.io/janbjorge/pgq-prometheus-service:latest
2. **Run the Docker Container**:
Use the following command to run the service, ensuring to replace the environment variables with your specific PostgreSQL connection details:
bash
Run the service
docker run -p 8000:8000 -e PGHOST=your-postgres-host -e PGDATABASE=your-database -e PGPASSWORD=your-password -e PGUSER=your-username -e PGPORT=5432 ghcr.io/janbjorge/pgq-prometheus-service
This command starts the Prometheus metrics service and makes it accessible at `http://localhost:8000/metrics`, ready for Prometheus to scrape.
**Full Changelog**: https://github.com/janbjorge/pgqueuer/compare/v0.8.3...v0.8.4