pm2 name a process code example
Example 1: change process name pm2
pm2 restart id --name newName
Example 2: pm2 show command
pm2 describe
Example 3: start stop restart pm2
pm2 start app.js --name "my-api"
pm2 start web.js --name "web-interface"
pm2 stop web-interface
pm3 restart web-interface
Example 4: pm2 stop process
pm2 stop <processname>