是否可以在运行时获取从进程的索引?
Is it possible to get index of the slave process at the runtime?
假设我运行 pm2处于集群模式pm2 start app.js -i 4
,是否有可能在实例池里面 [=23]中获取关于当前数量的信息=].
我的意思是在 app-0
中是 0
,在 app-1
中是 1
,等等。我需要在 运行时间。
我没有在文档中找到任何参考资料。
找到了!
process.env.pm_id
多亏了这个guy
假设我运行 pm2处于集群模式pm2 start app.js -i 4
,是否有可能在实例池里面 [=23]中获取关于当前数量的信息=].
我的意思是在 app-0
中是 0
,在 app-1
中是 1
,等等。我需要在 运行时间。
我没有在文档中找到任何参考资料。
找到了!
process.env.pm_id
多亏了这个guy