@pg-boss/dashboard
v1.1.2
Published
Web dashboard for monitoring and managing pg-boss job queues
Maintainers
Readme
pg-boss Dashboard
A web-based dashboard for monitoring and managing pg-boss job queues.
Features
- Overview: Aggregate statistics, problem queues, and recent warnings at a glance
- Queue Management: View all queues with cached statistics and create new queues
- Job List: View jobs with state and queue filtering
- Job Details: View full job payloads, output data, and metadata
- Job Actions: Create, cancel, retry, resume, or delete jobs directly from the UI
- Warning History: When
persistWarningsis enabled, browse through previously emitted warning events. - Multi-Schema Support: Monitor multiple pg-boss instances from a single dashboard
- Mobile Responsive: Full functionality on mobile devices with collapsible sidebar
- Shareable URLs: Database selection and filters are preserved in URLs for easy sharing
Requirements
- Node.js 22.12+
- PostgreSQL database with pg-boss schema
- pg-boss 12.11+
Installation
npm install @pg-boss/dashboardQuick Start
For a quick local test:
DATABASE_URL="postgres://user:password@localhost:5432/mydb" npx pg-boss-dashboardOpen http://localhost:3000 in your browser.
Configuration
The dashboard is configured via environment variables:
| Variable | Description | Default |
|----------|-------------|---------|
| DATABASE_URL | PostgreSQL connection string(s) | postgres://localhost/pgboss |
| PGBOSS_SCHEMA | pg-boss schema name(s) | pgboss |
| PORT | Server port | 3000 |
| PGBOSS_DASHBOARD_AUTH_USERNAME | Basic auth username (optional) | - |
| PGBOSS_DASHBOARD_AUTH_PASSWORD | Basic auth password (optional) | - |
Basic Authentication
To protect the dashboard with basic authentication, set PGBOSS_DASHBOARD_AUTH_USERNAME and PGBOSS_DASHBOARD_AUTH_PASSWORD:
PGBOSS_DASHBOARD_AUTH_USERNAME=admin \
PGBOSS_DASHBOARD_AUTH_PASSWORD=secret \
DATABASE_URL="postgres://localhost/mydb" \
npx pg-boss-dashboardBoth variables must be provided together. If only one is set, the dashboard will throw an error on startup.
Multi-Database Configuration
To monitor multiple pg-boss instances, separate connection strings with a pipe (|):
DATABASE_URL="postgres://host1/db1|postgres://host2/db2" npx pg-boss-dashboardYou can optionally name each database for better identification in the UI:
DATABASE_URL="Production=postgres://prod/db|Staging=postgres://stage/db" npx pg-boss-dashboardIf your databases use different schemas, specify them with matching pipe separation:
DATABASE_URL="postgres://host1/db1|postgres://host2/db2" \
PGBOSS_SCHEMA="pgboss|jobs" \
npx pg-boss-dashboardWhen multiple databases are configured, a database selector appears in the sidebar. The selected database is persisted in the URL via the db query parameter, making it easy to share links to specific database views.
Production Deployment
Option 1: Direct Node.js
npm install @pg-boss/dashboard
DATABASE_URL="postgres://user:pass@localhost:5432/db" \
node node_modules/@pg-boss/dashboard/build/server/index.jsOption 2: Docker
FROM node:24
WORKDIR /app
RUN npm install -g @pg-boss/dashboard
ENV PORT=3000
EXPOSE 3000
CMD ["pg-boss-dashboard"]docker build -t pgboss-dashboard .
docker run -d \
-e DATABASE_URL="postgres://user:pass@host:5432/db" \
-p 3000:3000 \
pgboss-dashboardOption 3: Docker Compose
services:
dashboard:
image: node:24
working_dir: /app
command: sh -c "npm install -g @pg-boss/dashboard && pg-boss-dashboard"
environment:
DATABASE_URL: postgres://user:pass@db:5432/mydb
PGBOSS_SCHEMA: pgboss
PORT: 3000
ports:
- "3000:3000"
depends_on:
- dbReverse Proxy
For production, place a reverse proxy in front of any of the above options. Example Nginx configuration:
server {
listen 80;
server_name pgboss.example.com;
location / {
proxy_pass http://127.0.0.1:3000;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}Enabling Warning Persistence
To capture warnings in the dashboard, enable warning persistence in your pg-boss configuration:
const PgBoss = require('pg-boss');
const boss = new PgBoss({
connectionString: 'postgres://localhost/mydb',
persistWarnings: true // Enable warning persistence
});Warnings correlate to warning events already emitted by pg-boss:
slow_query: Queries taking longer than expectedqueue_backlog: Queues exceeding their warning thresholdclock_skew: Database clock drift detection
Tech Stack
- Framework: React Router 7 (framework mode)
- Server: Hono via react-router-hono-server
- Styling: Tailwind CSS v4
- Components: Base UI
- Database: pg (PostgreSQL client)
- Testing: Vitest + Testing Library
Development (Contributing)
To work on the dashboard from source:
# Clone the pg-boss repository
git clone https://github.com/timgit/pg-boss.git
cd pg-boss/packages/dashboard
# Install dependencies
npm install
# Initialize local database with pg-boss schema and test queues
npm run dev:init-db
# Start development server with hot reloading
npm run dev
# (Optional) Start a worker to process jobs
# Run this in a separate terminal to see jobs being processed
npm run dev:worker
# Build for production
npm run build
# Run production build
npm startThe dev:init-db script creates the pg-boss schema and populates it with sample queues and jobs for testing. It connects to postgres://postgres:[email protected]:5432/pgboss by default.
The dev:worker script starts a worker that processes jobs from the same pg-boss instance as the dashboard. This is useful for testing the dashboard while jobs are being processed. The worker will stay running until you stop it with Ctrl+C.
Testing
# All tests (frontend + server)
npm test
# Full CI test (used by GitHub Actions)
npm run ciTroubleshooting
"Failed to load dashboard"
- Verify
DATABASE_URLis correct and the database is accessible - Ensure the pg-boss schema exists (run pg-boss at least once to create it)
- Check PostgreSQL logs for connection errors
No warnings showing
- Ensure
persistWarnings: trueis set in your pg-boss configuration - Warnings are only recorded after enabling this option
Queue stats seem stale
Queue statistics are cached in the queue table by pg-boss's monitoring system. They update based on your monitorStateIntervalSeconds configuration (default: 30 seconds).
License
MIT
