As a server administrator, I would like to view the command line arguments that a Node.js service was started with using pm2. (The ones that Node.js uses via process.argv
)
The command pm2 show my-service-name
gives information around that service but does not display the command that was used to start it.
e.g. pm2 start index.js -- myProcessArgument
Can anyone please tell me where I can see myProcessArgument
, or even better, the full line above?