We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
subj
The text was updated successfully, but these errors were encountered:
I don't know about logs, but it should definitely be possible to get log filenames (getMonitorData maybe?), and stream logs from those files.
Sorry, something went wrong.
Yes it defenitelly is possible. I am using that feature in szarsti/pm2-bunyan. I am stramin all log messages through bunyan.
You can bind to log events:
var ipm2 = require('pm2-interface')() ipm2.on('ready', function() { ipm2.bus.on('log:*', function(event, arg) { console.log('Log event', event, arg); }); });
No branches or pull requests
subj
The text was updated successfully, but these errors were encountered: