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?
All you have to do is :
pm2 describe <id of application or name>
Example
pm2 describe 1 or pm2 describe app
For Json Output
pm2 jlist
The output should have script args
tag that will describe all command line arguments,You can find more information here
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With