I have a running supervisor(for queue management) in my elastic beanstalk ec2 server.Also there are queues inside the jobs table.How can i configure my supervisor to handle the queues inside the jobs table. This is my supervisor.d/laravel.conf configuration:
[program:laravel-worker]
process_name=%(program_name)s_%(process_num)02d
command=php /var/app/current/artisan queue:work sqs --sleep=3 --tries=3 --max-time=3600
autostart=true
autorestart=true
stopasgroup=true
killasgroup=true
user=root
numprocs=8
redirect_stderr=true
stdout_logfile=/var/app/current/storage/laravel-queue.log
stopwaitsecs=3600
Is there any additional configuration that i need to add ??