You're browsing the documentation for an old version of SupportPal. Consider upgrading to the latest version.
Background Jobs
This feature is only available in Docker deployments.
Monitor jobs being queued and processed by the system.
Queue Dashboard
A dashboard is shown which shows an overview of the jobs, as well as details of recent/failed jobs. This dashboard can be used to monitor the processing of your queues and ensure everything is running smoothly.
Troubleshooting
Upgrading Docker-Compose from 3.6.2 to 3.7.0+
If you are using a Docker deployment from 3.6.2 or before and upgrading to 3.7.0+, you will need to manually update your configuration so the queues container is created and jobs are processed, follow these steps:
-
Browse to your
helpdesk-installrepository and pull the latest changes from our Git repository.git pull -
Browse to the
templates/docker-compose/directory.cd templates/docker-compose -
Copy the changes to the
.distfiles to your.ymlfiles.cp docker-compose.yml.dist docker-compose.yml cp docker-compose.prod.yml.dist docker-compose.prod.yml -
Update
.envto include the message queue service name at the end of the file.MQ_SERVICE_NAME=supportpal_mq -
Restart the containers.
make restart