I am running two Laravel 5.8 apps (yasmin and stcc) on one server via Forge and I use "laravel/horizon": "^3.2" with both websites. I start and keep the queue workers up via Forge Daemons php artisan horizon command on both directories.
In both websites .env and horizon.php config files I set unique queue names and prefixes so the jobs dont mix, plus I changed memory limit to 32MB (so far I am only using jobs to send emails).
It works fine, only I have some questions because I see some differences and strange behavior.
First question: Why I dont see "CPU Threads" and "Memory" columns on stcc Horizon dashboard and in yasmin dashboard it doesnt show anything?
Second question: Why does the htop command shows that processes use 128MB of memory?
I restarted whole server and clear-cached both laravel configs with php artisan optimize command before running Horizon, yet these two things still bother me.


