Vincent Vallet
Vincent Vallet
PM2 3.0.0 has been released: ``` $ npm install pm2@latest -g $ pm2 update ``` Be aware of breaking changes, especially drop support for node 0.12. Full list here :...
It was closed cause we merged a PR which try to fix this issue. We were waiting for feedback about it.
> Shouldn't we document that when using a child process, the developper should use the windowsHide option? Problem is : we will copy/paste nodejs documentation. This work is not really...
Hi @Jiang-Xuan It's not currently available. You can try to access _var from pmx. ``` const pmx = require('pmx') console.log(pmx._var) ```
Hi @camway I think your syntax is ok. But here is the way we used to instantiate metric : ``` const pmx = require('pmx') const probe = pmx.probe() const meter...
@camway Sorry, maybe a too quick answer :) .set() is only for metric. You can use : ``` myMeter.mark() // for meter myCounter.inc() // to increment counter myCounter.dec() // to...
Hi @bisubus I think we need a reflection about processes list and how to manage this. It can be related to this : - https://github.com/Unitech/pm2/issues/3685 - https://github.com/Unitech/pm2/issues/3678 - https://github.com/Unitech/pm2/issues/3625 -...
@vimalnegi did you try without the S3 exporter ? As mentionned in the readme there is an issue with the new AWS sdk and the method takeSnapshot(). But memory sampling...
I really think it's definitely not a good thing to let PM2 or a process decide CPU priority. This kind of decision should belong to OS or an external script....
Hi @mcginley561 I think it should use pm2/io now. I will try to find every occurrence and fix them.