-
-
Save suprememoocow/5133080 to your computer and use it in GitHub Desktop.
function reopenTransportOnHupSignal(fileTransport) { | |
process.on('SIGHUP', function() { | |
var fullname = path.join(fileTransport.dirname, fileTransport._getFile(false)); | |
function reopen() { | |
if (fileTransport._stream) { | |
fileTransport._stream.end(); | |
fileTransport._stream.destroySoon(); | |
} | |
var stream = fs.createWriteStream(fullname, fileTransport.options); | |
stream.setMaxListeners(Infinity); | |
fileTransport._size = 0; | |
fileTransport._stream = stream; | |
fileTransport.once('flush', function () { | |
fileTransport.opening = false; | |
fileTransport.emit('open', fullname); | |
}); | |
fileTransport.flush(); | |
} | |
fs.stat(fullname, function (err) { | |
if (err && err.code == 'ENOENT') { | |
return reopen(); | |
} | |
}); | |
}); | |
} |
Even better: pm2 sendSignal SIGHUP my-app
...
Have you considered using copytruncate
instead of executing kill -HUP...
in postrotate
. copytruncate
will copy the current log file to the rotated file and then truncate the original log file to 0 bytes. This allows node to keep writing to the same stream.
I would avoid using logrotatecopytruncate
if you are worried about logging log data. Per the logrotate docs:
copytruncate
Truncate the original log file in place after creating a copy,
instead of moving the old log file and optionally creating a new
one, It can be used when some program can not be told to close
its logfile and thus might continue writing (appending) to the
previous log file forever. Note that there is a very small time
slice between copying the file and truncating it, so some log-
ging data might be lost. When this option is used, the create
option will have no effect, as the old log file stays in place.
please, can you show who is fileTransport param?
You could use pm2's JSON output, @jonrahoi -
pm2 jlist
; you'll have to find the relevant app yourself.