Skip to content

Latest commit

 

History

History
2344 lines (1833 loc) · 99.8 KB

CHANGELOG.md

File metadata and controls

2344 lines (1833 loc) · 99.8 KB

5.3.1

  • #5686 Switch from Travis CI to Github Actions
  • #5680 Fixed reserved keyword for ES6 Strict Mode when Bundling @juaneth
  • #5683 update badges
  • #5684 auto switch light and dark mode logos
  • #5678 Bugfix/deploy ecosystem filename extension / esm module default ecosystem config name @TeleMediaCC
  • #5660 Fix matching logic for logs from namespace when lines = 0 @bawjensen
  • fix "vulnerabilities" in axios module

5.3.0

  • fix: replace non-working condition that blocks flush from clearing the logs #5533 @Sailboat265
  • fix: ESM script loader #5524 @BlueWater86

5.2.2

  • fix: correct pm2 ls display when there is a (very) long process id (@dko-slapdash)
  • typo: corrections

5.2.1

  • fix cluster error avoiding process restart (#5396)
  • ensure increment_var value is a number (#5435)
  • update dependencies
  • add node latest to travis testing

5.2.0

  • replace node-cron by croner (#5183 #5035)
  • upgrade mocha deps
  • fix pm2 report when daemon not running
  • remove semver check for legacy node.js versions
  • update node version in setup.deb.sh by using lts (#5201) + openrc
  • replace legacy util._extend by Object.assign (#5239)
  • add missing start options types (#5242)
  • recursive detection of package.json (#5267)
  • make tarball module uninstall cross-platform (#5269)
  • Fix unnecessary "ENOENT" console.error when serving a spa (#5272)
  • fix: used env variable instead of hardcode datetime format (#5277)
  • copyright update (#5278)
  • fix: remove constants import from VersionCheck (not needed) (#5279)
  • Reduce async import (#5280)

5.1.2

  • easily disable cron-restart strategy via $ pm2 restart --cron-restart 0
  • allow to update cron-restart on restart

5.1.1

  • remove fast-printf and replace with sprintfjs

5.1.0

  • add back Node 10.x support
  • make pm2-sysmonit module optional

5.0.3

  • skip system monitoring on Windows

5.0.1/5.0.2

  • fix npm install --no-optional pm2

5.0.0

System Monitoring

A new local system monitoring feature has been added, allowing to monitor numerous vital server metrics.

Most important metrics will be displayed when doing a pm2 ls:

┌─────┬─────────────────┬─────────────┬─────────┬─────────┬──────────┬────────┬──────┬───────────┬──────────┬──────────┬──────────┬──────────┐
│ id  │ name            │ namespace   │ version │ mode    │ pid      │ uptime │ ↺    │ status    │ cpu      │ mem      │ user     │ watching │
├─────┼─────────────────┼─────────────┼─────────┼─────────┼──────────┼────────┼──────┼───────────┼──────────┼──────────┼──────────┼──────────┤
│ 4   │ app             │ default     │ 1.0.0   │ fork    │ 164618   │ 2s     │ 1670 │ online    │ 0%       │ 41.8mb   │ unitech  │ disabled │
└─────┴─────────────────┴─────────────┴─────────┴─────────┴──────────┴────────┴──────┴───────────┴──────────┴──────────┴──────────┴──────────┘
host metrics | cpu: 1.6% 42.9º | mem free: 52.0% | wlp0s20f3: ⇓ 0mb/s ⇑ 0mb/s | disk: ⇓ 0.199mb/s ⇑ 0mb/s /dev/nvme0n1p3 88.25% |

All server metrics will be available to pm2.io:

┌─────────────────────────────┬──────────────────────────────────┐
│ PM2 CPU Usage               │ 0.0 %                            │
│ PM2 Memory Usage            │ 67.4 mb                          │
│ PM2 Agent CPU Usage         │ 0 %                              │
│ PM2 Agent Memory Usage      │ 0 mb                             │
│ CPU Usage                   │ 1.5 %                            │
│ CPUs Usage                  │ 0|0|0|0|2|0|0|1|0|0|0|1|0|1|2|8  │
│ CPU Temperature             │ 42.9 °C                          │
│ RAM Total                   │ 15.34 gb                         │
│ RAM Free                    │ 1.18 gb                          │
│ RAM Active                  │ 7.35 gb                          │
│ RAM Available               │ 7.99 gb                          │
│ RAM Usage                   │ 47.9 %                           │
│ FD Opened                   │ 15072                            │
│ Disk Writes                 │ 0 mb/s                           │
│ Disk Reads                  │ 0.24 mb/s                        │
│ Disk Usage                  │ 88.25 %                          │
│ Disk Size                   │ 465.60 gb                        │
│ Total TX                    │ 0.005 mb/s                       │
│ Total RX                    │ 0.004 mb/s                       │
│ fs:use:/dev/nvme0n1p3       │ 88.25 %                          │
│ fs:size:/dev/nvme0n1p3      │ 465.60 gb                        │
│ net:tx_5:wlp0s20f3          │ 0.005 mb/s                       │
│ net:rx_5:wlp0s20f3          │ 0.004 mb/s                       │
│ net:rx_errors_60:wlp0s20f3  │ 0 /min                           │
│ net:tx_errors_60:wlp0s20f3  │ 0 /min                           │
│ net:rx_dropped_60:wlp0s20f3 │ 0 /min                           │
│ net:tx_dropped_60:wlp0s20f3 │ 0 /min                           │
│ graphics:mem:total          │ 3878 mb                          │
│ graphics:mem:used           │ 1260 mb                          │
│ graphics:temp               │ 46 °C                            │
└─────────────────────────────┴──────────────────────────────────┘

Disabling system monitoring

# Disable system monitoring
pm2 set pm2:sysmonit false
# Enable system monitoring
pm2 set pm2:sysmonit true

PM2.io bandwidth reduction

Data quantity sent from PM2 to PM2.io has been reduced by 80%, thanks for a json patch differential system. Much more data can now be exposed (metrics, actions) to PM2.io

Other fixes

  • feat: added args and full script path to monitoring data
  • fix: regular local ip check
  • fix: pm2 agent watchdog has been consolidated and fixes freezing issues
  • fix: modules bumped

4.5.6

  • all submodules version bumped
  • supress all "security" warnings

4.5.5

  • bump debug
  • remove systeminformation

4.5.4

  • drop non used package

4.5.3

  • bump vizion from 0.2.13 to 2.2.1 (Snyk CVE)
  • bump chokidar to 3.5.1

4.5.2

  • bump @pm2/js-api

4.5.1

  • fix: cron in cluster mode was not restarting process after one pass - fixes #4834 #4733 #4307 #4834
  • fix: restore --sort option on pm2 ls - fix #4536
  • fix: fix tests with npm7
  • fix: restore warning message about process list changed and not dumped
  • chore: alias --cron with --cron-restart
  • chore: test PM2 againt Node.js 15.x
  • chore: upgrade systeminformation and debug module to latest - PR #4892 by @AdamMajer
  • chore: drop Node 9.x from travis testing
  • chore: remove ps-list module

4.5.0

  • fix: creating log folder in sync mode. #4846 - PR #4844 by @QS20199
  • fix: PM2 unable to run ESM packages: ERR_UNSUPPORTED_ESM_URL_SCHEME #4839 - PR #4841 by @ox-harris
  • fix: Use opts.namespace if it was passed in. Previously, it was ignored. #4778 - PR #4791 by @sbleon
  • fix: Prevent reloadLogs command from hanging. #4781 - PR #4782 by @mbrooks and Franck Danard
  • fix: backward compatibility fix for tarball modules - PR #4767 by @ykolbin
  • fix: Operation not permitted on call setgid #2957 - PR #4681 by @guard43ru
  • chore: upgrade dependencies

4.4.1

  • feature drop: autodump fixes #4763
  • fix: fix starting pm2 script from inside an app #4761 (need use PM2_PROGRAMMATIC)

4.4.0

  • feature: support Node v14.0

4.3.1

  • fix: downgrade vizion

4.3.0

  • feature: reduce by 1/3 pm2 package size (drop moment, lodash)
  • feature: pm2 start app.js --filter-env NODE_ENV #4596
  • feature: print logs of a particular namespace #4517 @bvsubhash
  • feature: trigger all the process using 'all' or trigger all processes in a particular namespace #4518 @bvsubhash
  • feature: support ecosystem.config.cjs #4662 @Timic3
  • fix: disable log (--error /dev/null --output /dev/null) on Windows #4560 @codpot
  • fix: pm2 install <tar_file> adaptation #4593 @adunkey
  • fix: add type for pm2.reload with optional options parameter #4615 @kevindoveton
  • fix: add ignore_watch to StartOptions types #4629 @jlvcm
  • fix: fix --cwd CLI option description #4639 @warpdesign
  • fix: do not require cron if not necessary in CLI
  • fix: upgrade mkdirp to 1.0.4 (sec vuln) #4638
  • chore: bump mocha to latest + drop mocha.opts + add .mocharc.yml
  • chore: pm2 init ecosyst file template changes
  • chore: pm2-deploy@1.0.2 (revert fix)
  • chore: pm2-io-apm@4.3.4 (instant trace + broadcast trace threshold + boolean metrics support)

4.2.3

  • fix: Fix an import error on Node 9.x

4.2.2

  • feat: Support ESM on Node 13 via .mjs file or "type":"module" in package.json #4540
  • fix: Fix an error for pm2 path on Windows. #4563

4.2.1

  • fix: col size too small for certain app name with tracing enabled
  • chore: check for pm2 updates

4.2.0

  • feature: pm2 logs --highlight <str> to highlight specified string when using pm2 logs #4013 by @bvsubhash
  • feature: pm2 sysmonit activate system wide monitoring && pm2 sysinfos display system informations
  • feature: new App Namespace feature via namespace attr or pm2 start app.js --namespace <ns> #3471 by @bvsubhash
  • feature: enforce message sending for Windows Graceful Shutdown via pm2 start app.js --shutdown-with-message to use message sending for specific process or via PM2_KILL_USE_MESSAGE=true pm2 update to default this behavior on PM2. #3561 #3691 #3555 #4469 #4470 #4474 by @aleksk and @8ai
  • feature: pm2 ls now display a hint when process list differ from dump file
  • fix: if id > 100 not shown in pm2 ls #4475
  • fix: stop and delete cron immediately on deletion of a process #4492 by @bvsubhash
  • fix: display correct username by @bvsubhash
  • chore: add test on node 13.x
  • chore: cleanup some unused files
  • chore: enforce node >= 8.10.0

4.1.2

  • fix: temporarily disable system metrics retrieval

4.1.1

  • fix: #4452 disable network collection metric

4.1.0

  • fix: #4270 fix ANSI escape for pm2 ls --watch
  • fix: pm2 start app.js -i 1 start app in cluster mode
  • fix: #4254 add HOST environment variable on pm2 serve
  • fix: #4267 Allow usernames in uid/gid/user again
  • fix: #4376 make process.send('ready') trigger sigint
  • fix: #4443 allow pm2-runtime to auto-exit even if modules are still running
  • fix: #4364 typos
  • fix: #4288 add 'max' type in typescript definition

4.0.2

  • fix: #4450 do not open sysinfo window on Windows

4.0.1

  • chore: switch Systeminfo logging to debug

4.0.0

  • feat: make pm2 fully standalone with node embedded
  • feat: startup, npm, node system adaptation for standalone installs
  • feat: system information worker - retrieve: - network I/O + latency - disk I/O + space - cpu usage + temperature - memory usage - intelligent display of information (e.g. display disks > 80% cpu usage)
  • feat: listing of docker container on host machine with independent pm2 list
  • feat: upgrade of Chokidar to 3.x - Massive CPU & RAM consumption improvements for watch feature
  • r&d: manage container like pm2 processes
  • feat: intelligent display of high loaded processes in an independent pm2 list
  • feat: #4224 --ignore-watch now accepts globs (@vaskevich)
  • feat: pm2 save --force allow to force save of empty process list
  • fix: pm2 monit dashboard without leaks
  • fix: pm2 register fixed
  • refactor/fix: pm2 listing systems refactoring
  • chore: remove old legacy code for < 8 Node.js versions
  • chore: make the repo lighter
  • chore: better display when pm2-runtime is linked to on-premise
  • chore: pm2 CLI refactoring #4391

3.5.0

  • feat: #4220 #2941 #4196 improve pm2 serve for SPA - autoredirect requests to index.html if --spa
  • feat: on pm2 show , display metric unit and divergent environment variables
  • feat: #4157 tweak systemd script to auto restart PM2 in case of crash failure
  • fix: #4212 on pm2 show, avoid crash when versioning comment is not present
  • fix: #4171 fix pm2 list when small screen
  • fix: #4197 fix pm2 unstartup for macOS
  • fix: #2764 in pm2 monit, only display log of selected application
  • fix: #2793 pm2 monit, rolling log buffer, avoid crash and performance issues
  • fix: #4060 do not emit online when application is errored
  • chore: remove nssocket in dependencies

3.4.1

  • fix: allow pm2 register / pm2 monitor
  • fix: restore trace indicator

3.4.0

  • use @pm2/io version 4
  • disable @pm2/io for node.js v4 and v5

/!\ Warning, built-in custom metrics are not supported anymore on Node 4 and 5

New builtin metrics when starting a Node.js application:

  • Heap Size
  • Heap Usage
  • Used Heap Size
  • Active Requests
  • Active handles
  • Event loop latency
  • Event loop latency p95
  • HTTP queries per minutes
  • HTTP Mean Latency
  • HTTP P95 Latency

3.3.1 (18/02/19)

  • add pm2 profile:cpu [timeout]
  • add pm2 profile:mem [timeout]

3.3.0 (14/02/19)

  • Upgrade pmx to ^3

3.2.9 (17/01/19)

  • #4128 fix: force detached process

3.2.6-8 (11/01/19)

  • rollback: node bin path handling adaptation

3.2.5 (09/01/19)

  • feat: enhance pm2 report
  • feat: support snap Ubuntu system
  • fix: pm2 register/monitor command
  • fix: consolidate spawn function on unhealthy systems to avoid pm2 crash
  • fix: error message if extra lang interpreter are not installed when runing tests
  • fix: (pm2 deploy) command line bug when passing env variables to post-deploy hook
  • fix: (pm2 deploy) always deploy to default branch problem
  • fix: (pm2 deploy) pm2 deploy exec now accept multiple commands
  • fix: print full env + skip extra internal fields when using programmatic pm2

3.2.4 (19/12/18)

Feat

  • display cron configuration when doing pm2 desc <id>
  • refactor test suite (benchmark/simplification)

Fix

  • pm2 flush flush only one app
  • resolve uid properly on pm2 ls / pm2 desc
  • keep wait_ready option on process reload
  • keep stringification of environment variable behavior
  • return an error when using pm2 api on starting json configuration if one app is errored

3.2.3 (4/12/18)

Fix

  • medium rare bug: fix issue when acting on process file (#3987 + #3192)
  • concurrent action to 1 if acting on only 2 processes
  • fix cluster syntax
  • add more test on port release

3.2.2 (5/10/18)

Fix

  • minor bug: fix bug when passing -i 'max' or -i 0

3.2.1 (3/10/18)

Fix

  • minor bug: get internal pm2 config after creation on new pm2 boots

3.2.0 (3/10/18)

Features

  • package.json version field retrieval and display in pm2 ls, pm2 show, pm2 monit
  • pm2 internal configuration system via pm2 set pm2:key value, attached to pm2.user_conf
  • add the .user field (CLI + Config) to set the user to start the application with
  • add the .time field (CLI + Config) to enable default logs date prefix
  • max_memory_restart now triggers a reload
  • pm2 env <pm_id> command to display the environment the application is running with
  • exponential backoff restart delay via --exp-backoff-restart-delay <ms> with reset mechanism
  • new timing library on PM2 daemon (increase log througput, reduce CPU usage and memory usage)
  • better user management system with username resolution to uid
  • websocket default switch for pm2 plus
  • new module management system (pm2 package <folder>, pm2 publish <folder>, pm2 install <tarball>)

Fix

  • @pm2/io 2.4 (restart > 10.0)
  • restart behavior tested
  • fix module version parsing
  • module system refactoring (TAR + NPM)
  • fix watch_delay in config file

3.1.3 (20/09/18)

Features

  • allow non-node application to run multiple instances without auto switch to cluster mode
  • allow to call pm2 logs even without application (#3820)
  • switch pm2 link and pm2 plus protocol to websocket by default instead of axon
  • enhance the pm2 init template that generates ecosystem files by adding some extra fields

Fix

  • remove deprecation message for node 0.10
  • pm2 login/register/monitor now hit the new oauth pm2 plus system

3.1.2 (10/09/18)

  • version bump on @pm2/io

3.1.1 ( Mon Sep 10 2018 16:18:25 GMT+0200 (CEST) )

Hot Fixes

  • #3901 fix error when installing module (7b43fea5)

3.1.0 ( Mon Sep 10 2018 10:25:13 GMT+0200 (CEST) )

Bug Fixes

  • tmp fix io@beta + rename metric (04ab7ac4)
  • remove ending \n on git version comment (9a36bfeb)
  • #3883 fix typings for max_memory_restart and add wait_ready (b35ea237)
  • restore monitored indicator (34966432)
  • remove install of modules on pm2 plus command (6a8bb269)
  • invert kill/link (3c37b528)
  • #3877 #3831 (16f4f2bc)
  • #3865 ensure pm2 never run simultaneous gracefullExit, prevent dump file corruption (79679db1)
  • #3786 fix issue when triggering an action that does not exist (1ff7fd3d)
  • fixed unstartup when launchd (3d0461c3)
  • access gl_retry as class property (bbcb2b6b)
  • #3831 switch registerToKM() to register() (8df2451e)

Features

  • add id column in stacked mode (80 char mode) (83033d4c)

Refactor

  • only enable deep monitoring if explicitly stated (f67e14f0)
  • #3786 clean code (6cbca8bc)
  • removes unused imports. (b8b48e83)
  • only import the necessary methods from async. (6466ee44)
  • removes unused async imports. (679b14ff)

Chore

Branchs merged

  • Merge branch 'master' into development (95321c6d)
  • Merge branch 'master' into development (c3c0e423)
  • Merge branch 'master' into development (8e6481bc)
  • Merge branch 'development' into development (83294afe)
  • Merge branch 'development' into flag--ext (79ab9242)
  • Merge branch 'development' into post_install (d5604300)

Pull requests merged

  • Merge pull request #3885 from Unitech/typings (19a35e9b)
  • Merge pull request #3878 from cuspymd/fix-command-help (2d3d2044)
  • Merge pull request #3876 from Unitech/lost_apps_sigterm (4fa247a3)
  • Merge pull request #3874 from Unitech/trigger_no_action (e868f003)
  • Merge pull request #3872 from Unitech/column_id_stacked (55b6ccc3)
  • Merge pull request #3723 from livankrekh/development (98f49dc3)
  • Merge pull request #3821 from imarakho/post_install (4217b150)
  • Merge pull request #3823 from imarakho/flag--ext (cc68dc1f)
  • Merge pull request #3822 from imarakho/flush_parameter (bbcc85a4)
  • Merge pull request #3807 from medanat/minimize-async-lib-footprint (7e92855f)
  • Merge pull request #3829 from soyuka/patch-pidusage (a668f576)

3.0.3 ( Tue Aug 07 2018 23:35:05 GMT+0200 (CEST) )

Bug Fixes

3.0.2 ( Tue Aug 07 2018 23:35:05 GMT+0200 (CEST) )

Bug Fixes

Branchs merged

3.0.1 ( Mon Jul 23 2018 14:13:35 GMT+0200 (CEST) )

Bug Fixes

  • allow to set a name via pm2 link (ebffb609)
  • disable network monitoring as long as ampq not supported (ae1547bf)
  • display error message from pm2-deploy (9171b810)
  • protect geteuid/getegid from being called on windows #3793 (0495bd8e)
  • put message module at the right level (56f5e047)
  • do not ignore child pres folder (10ee9987)
  • let->var (89e2a125)
  • method renaming (f3faa3d8)
  • path (4f980550)
  • #3791 mitigate pidusage errores (88551b8c)
  • pm2 plus (9bc34e56)
  • #3764 (3a582b42)
  • drop coffee-script (installed via pm2 install coffeescript) (76ceb2fd)
  • restore no_interaction for pm2-dev (902e5a5a)
  • option -w doesn't work (165a05c8)
  • retab shell script to use space for indent consistency (e3b4327d)
  • set Makefile indent to tab instead of common space (4db0ae01)
  • set yaml file indent to 2 spaces instead of 3 (e4ecb0b2)
  • remove trailing spaces (5c115983)
  • fixes #3735 (0548cb82)

Hot Fixes

  • fix #3767, do not consider as a command if space and slash are found (d15a12ce)
  • fix #3767, do not consider as a command if space and slash are found (f8ec1503)

Features

  • add inspector for node 10 and heap snapshot (dc61bca6)
  • pm2 plus xx yy now generates a name with hostname-UID (fcf75e2c)
  • #3757 --only='app1,app2' (bea98330)
  • pm2 plus cli (1da6edde)
  • reload all apps after connection to pm2 plus (35a1ed2a)
  • ask to install module after connection with KM (68e87b39)
  • with pm2 plus command ask to install modules (28c61716)

Test

  • test with development packages (d361c840)

Chore

Branchs merged

  • Merge branch 'development' into uid-gen (5324c878)
  • Merge branch 'master' into development (7d04f638)

Pull requests merged

  • Merge pull request #3811 from Unitech/memory_inspector (62018044)
  • Merge pull request #3801 from vkotovv/grammar-fixes (9bb37a66)
  • Merge pull request #3799 from Unitech/refactor-agent (bcc4fea8)
  • Merge pull request #3787 from Unitech/multi-only (ea5d74a8)
  • Merge pull request #3788 from Unitech/uid-gen (f70444f3)
  • Merge pull request #3784 from Unitech/pm2-plus-cli (e8c13c37)
  • Merge pull request #3780 from Unitech/plus_modules (466d2701)
  • Merge pull request #3768 from Unitech/spaces (0477354b)
  • Merge pull request #3771 from chinesedfan/patch-2 (8de987a6)
  • Merge pull request #3762 from shaharmor/issue-3441 (429e455d)
  • Merge pull request #3761 from PeterDaveHello/fix-sh-indent-style (24cddc25)
  • Merge pull request #3737 from morugu/add-node-env-output (6628f163)
  • Merge pull request #3743 from vivex/master (06872c25)
  • Merge pull request #3748 from JimiC/support_nvm4win (2dac235b)
  • Merge pull request #3752 from PeterDaveHello/upstart.tpl (d4e66e3a)
  • Merge pull request #3753 from PeterDaveHello/fix-editorconfig (d1478680)
  • Merge pull request #3754 from PeterDaveHello/remove-trailing-space (b660f03e)

3.0.0 ( Wed Jun 20 2018 11:06:21 GMT+0200 (CEST) )

Breaking changes

  • merge_logs is now activated by default if not in cluster mode. Logs will not be suffixed by the pm_id if only one app is started (ae02adf6)
  • Drop support for node 0.12
  • Drop gracefulReload command
  • Remove Interactor from PM2 source code
  • Replace pmx with pm2-io-apm

Bug Fixes

  • return the configuration and allow custom conf to override default values (37dc7de1)
  • add use strict for node 4 compatibility (ba2ee3b1)
  • #3605 fix parameters definition, don't use camelcase for properties (c8616276)
  • #3695 change version check method in order to make it work with alpha/beta versions (052d6c55)
  • deprecated warning on isbinaryfile (db09275f)
  • #3688 test adaptation + pm2 serve --port option (f0249684)
  • startup script issue 18.04 #3645 (ff1a7f31)
  • that this - uncache node_modules (294038d7)
  • verify default conf variable via package.json on public module (157b106d)
  • bug because of const (56f05a90)
  • do not run two pm2 para cmds (3274132b)
  • version (3ec178e5)
  • re-enable agent tests (e6febcd7)
  • test/display summary (b075e6d0)
  • skip interactor tests (36c4d6bc)
  • remove unused tests (234c6314)
  • add missing libraries in travis (88fbb845)
  • remove unused variable when trying to use tracing (3aeeba02)
  • remove useless tests from .sh (e0be81c8)
  • conflict (e13f39c9)
  • fix bug with interpreter args (b26efa0d)
  • improve error message if action has failed (d9f44f17)
  • use polyfill module for copySync with node 4.x (bc07f43b)
  • improve error message if action has failed (dacc6542)
  • solve empty list when no process and try to update pm2 (89511846)
  • #3485 fix issue when there is empty dump file (f2523f6a)
  • #3456 use homedir() instead of process.env.HOME, make module installation work on windows (1e001732)

Features

  • add support for openbsd rc.d init scripts (fdeb0c32)

  • add kill_retry_time argument (b2cc0031)

  • bin/pm2

Refactor

Test

Chore

  • shorten ecosystem file (992a0452)
  • change motd wording (aa183ba1)
  • merge master in development (0e4453d9)
  • keymetrics -> pm2 (2c8170c2)
  • upgrade all modules + keymetrics-agent -> pm2/agent + increase version enabling v8-compile-cache (53ca18c1)
  • pm2.io -> @pm2/io (ae098962)
  • right names as pm2 maintainers (e8cd7131)
  • add changelog generation into contributing.md (d77bfbc3)
  • cache node_modules (81627e94)
  • clone last 5 commits (dad38ed1)
  • delete old stagnating pmx inside test (36834c2c)
  • pmx -> pm2.io (adcbebc3)
  • updgrade pmx-2 (eeeb2988)
  • disable legacy test (13723bd9)
  • remove test for pmx alert system (c43414a6)
  • sync from master (3424ee27)
  • add unique id for each process (85a5ee0f)
  • use npm install for CI as yarn has issue with npm (52902186)
  • remove unused dependency (830fc15f)
  • upgrade PM2 to 3.0 (4bc2eb4c)
  • remove unused console.log (33db5084)
  • wording on error message (c251c8c9)
  • revert PR #3496 (aae1d55e)
  • fix issue with snapshot command + remove command forceGc (97fd1010)
  • wording on error message (5f78ecbf)
  • drop 0.12 test on travis (beb6e487)
  • downgrade promptly (074a7a40)
  • remove coffee and livescript dependencies (13d6565c)
  • upgrade module version and engine version (84796956)

Branchs merged

  • Merge branch 'development' into chore/dev-cache-node-modules (146c4e11)
  • Merge branch 'development' of https://github.com/Unitech/pm2 into new-agent (3514e7fa)
  • Merge branch 'development' into master (f5668331)
  • Merge branch 'development' into new-usage-cli (4ae27694)
  • Merge branch 'Eywek-improv/agent' into new-agent (3e259dd1)
  • Merge branch 'ecosystem-documentation' of github.com:rmonnier/pm2 into ecosystem-documentation (98348955)
  • Merge branch 'development' into ecosystem-documentation (40157784)
  • Merge branch 'inspect_mode' of github.com:Unitech/pm2 into inspect_mode (7e1494c7)
  • Merge branch 'development' of github.com:Unitech/pm2 into development (48f81a8b)
  • Merge branch 'development' into master (47e54109)
  • Merge branch 'development' into module_install_windows (7b82fb91)
  • Merge branch 'development' into module_install_windows (80b0495f)

Pull requests merged

  • Merge pull request #3726 from soyuka/fix-list (0255c5a6)
  • Merge pull request #3725 from soyuka/fix-list (a39eb4f8)
  • Merge pull request #3718 from AaronM04/openbsd-init-script (85458261)
  • Merge pull request #3721 from Unitech/io_conf (70ec1f81)
  • Merge pull request #3716 from Unitech/io_conf (0bc000b9)
  • Merge pull request #3714 from Unitech/definition (d8cff0de)
  • Merge pull request #3700 from Unitech/report_error (4b2cad40)
  • Merge pull request #3670 from Unitech/changelog (4bcbcce1)
  • Merge pull request #3662 from DanielRuf/chore/dev-cache-node-modules (540590ee)
  • Merge pull request #3663 from DanielRuf/chore/dev-clone-last-5-commits (bdf95fc9)
  • Merge pull request #3584 from ngtmuzi/development (33984b64)
  • Merge pull request #3500 from Unitech/test-parallel (da56c7af)
  • Merge pull request #3539 from KimSeongIl/master (1325704d)
  • Merge pull request #3556 from N-Nagorny/logs-smart-app-name-cutting (bfddf4fd)
  • Merge pull request #3553 from Unitech/fix_tracing_not_working (9d51fe08)
  • Merge pull request #3549 from Eywek/new-agent (2f04027b)
  • Merge pull request #3548 from rmonnier/start-ecosystem-default (55412f26)
  • Merge pull request #3546 from soyuka/improve-monitor-perf (e4e29233)
  • Merge pull request #3534 from rmonnier/new-usage-cli (5dfba8a4)
  • Merge pull request #3542 from rmonnier/default-start-ecosystem (c65595f4)
  • Merge pull request #3545 from rmonnier/default-ecosystem (b3718656)
  • Merge pull request #3543 from rmonnier/ecosystem-documentation (a60580a1)
  • Merge pull request #3541 from soyuka/development (67e7a015)
  • Merge pull request #3511 from Unitech/inspect_mode (75fb87f8)
  • Merge pull request #3517 from Unitech/polyfill_fs_copy_node4 (524f5494)
  • Merge pull request #3516 from Unitech/drop_unused_feature (9436f11a)
  • Merge pull request #3510 from Unitech/dump_refacto (674e4469)
  • Merge pull request #3501 from Unitech/refactor_api (9f2c4ca4)
  • Merge pull request #3496 from rmonnier/master (829cc303)
  • Merge pull request #3484 from Unitech/pull_by_name (24d29404)
  • Merge pull request #3482 from Unitech/mjs_support (ebe7b048)
  • Merge pull request #3495 from Unitech/module_install_windows (e9c625d3)
  • Merge pull request #3507 from cheapsteak/patch-1 (a49287d6)

2.10.4 ( Thu May 17 2018 14:32:40 GMT+0200 (CEST) )

Bug Fixes

Chore

  • update issue and PR templates to use comments to hide instructions in the frontend (9e0180ed)

Pull requests merged

  • Merge pull request #3664 from DanielRuf/chore/update-issue-pr-templates (067446f2)

v2.10.3 ( Fri Apr 27 2018 11:42:16 GMT+0200 (CEST) )

Chore

v2.10.2 ( Thu Mar 29 2018 13:06:11 GMT+0200 (CEST) )

Bug Fixes

  • reinforce pm2-runtime auto exit strategy #3567 #3206 (e09cdbab)

Pull requests merged

  • Merge pull request #3569 from Unitech/pm2-runtime-hot-fix (473a2d6d)
  • Merge pull request #3547 from Unitech/revert-3532-logs-smart-app-name-cutting (438e3030)
  • Merge pull request #3532 from N-Nagorny/logs-smart-app-name-cutting (067c18e6)

v2.10.1 ( Mon Feb 26 2018 11:38:18 GMT+0100 (CET) )

Bug Fixes

v2.10.0 ( Mon Feb 19 2018 14:51:19 GMT+0100 (CET) )

Bug Fixes

  • add livescript in default modules (a315eeb6)
  • replace dash with underscore (203df768)
  • make sure not pm2 is running (bd798fd7)
  • auto-exit edge case fix + pm2 no daemon mode + log in raw by default + less logs (704ae518)
  • impact v8 flag in fork mode also (41bf6ef7)
  • fixup! #2182 Get rid of annoying popups in Windows 10 (3a85b59d)

Hot Fixes

Features

  • add dependencies section into ecosystem.json file. (828a30d0)

  • --deep-monitoring available from pm2-runtime (99e62e3b)

  • add deep_metrics to deep_monitoring flag (4d1bea5e)

  • add flag to enable deep-monitoring (c5418688)

  • allow pm2 to install a set of module as one single command and add deep-monitoring. (9dddc80d)

  • pm2 pid <app_name> command (6687d499)

  • allow pm2 to install and enable event-loop-inspector data collecting (e6b0c474)

  • ignore signal when running in --no-daemon (b9c01c99)

  • upgrade pmx to git development branch (21be05a0)

  • allow pm2 to enable v8 data collecting from pmx (aa180fa8)

  • allow pm2 to install gc-stats (15634168)

  • feat add changelog generation support (14f53fc0)

  • pm2

    • add pm2 init option to generate an ecosystem file (5d56fac7)
    • add pm2 init option to generate an ecosystem file (a38fd199)

Documentation

  • add documentation on new pm2 install command (c90c453f)
  • add sendDataToProcessId into typescript definitions (4a2e8d2d)

Refactor

  • delete all "if" condition when installing new module, create an object with all modules and a generic installation process (1b92a9c4)
  • deep pm2-runtime refactor #3408 #3257 #3266 (c13b2364)
  • no more interactive spinner for connection to KM + change pm2 log format + remove some logs (d1916f40)

Chore

Branchs merged

  • Merge branch 'development' of ssh://github.com/deltasource/pm2 into hotfix/scoped-package-support (94ea9d9e)
  • Merge branch 'master' into development (46606903)
  • Merge branch 'development' of github.com:Unitech/pm2 into v8_option (757562f7)
  • Merge branch 'development' of github.com:Unitech/pm2 into gc-stats (3ed1a747)
  • Merge branch 'master' into development (ee7651e4)

Pull requests merged

  • Merge pull request #3466 from natcl/development (c6d7ace8)
  • Merge pull request #3464 from andyfleming/patch-1 (dd9ebb60)
  • Merge pull request #3459 from rmonnier/master (46948a98)
  • Merge pull request #3458 from Unitech/pm2_install_command (f3b35726)
  • Merge pull request #3453 from deltasource/hotfix/scoped-package-support (974f9bf0)
  • Merge pull request #3448 from Unitech/deep_monitoring_flag (331bc741)
  • Merge pull request #3447 from Unitech/deep-monitoring (719d328e)
  • Merge pull request #3443 from Unitech/event-loop-inspector (77a35274)
  • Merge pull request #3442 from Unitech/event-loop-inspector (dad98e6e)
  • Merge pull request #3424 from Unitech/sendDataToProcessId_def (95e85eef)
  • Merge pull request #3438 from Unitech/v8_option (e46b15dc)
  • Merge pull request #3437 from Unitech/gc-stats (1a6771aa)
  • Merge pull request #3400 from toddwong/windowsHide2 (f65e8794)
  • Merge pull request #3421 from Unitech/generate_changelog (b0690618)
  • Merge pull request #3419 from Rohja/fix-build-number-deb-rpm (b4343de2)

2.9.2

  • #3364 30% faster CLI via v8-compile-cache

  • add process._getActiveRequests() and process._getActiveHandles() custom metrics

  • #3402 #3360 fix bad username

  • #3413 check dependencies before launching tests

  • #3295 add sorting feature for process list (pm2 ls --sort <field_name:order>)

  • #3404 if no gid specified - set gid to uid

  • #3287 add typing for env

  • #3374 separate stdout and stderr for pm2-docker/pm2-runtime

  • #3366 improve building of rpm and deb packages

  • #3375 sendLineToStdin/sendDataToProcessId fix

  • #3365 fix report command for windows

  • #3367 Display an error if the process is not found when running 'pm2 logs '

  • #3256 TypeError: Cannot read property 'destroy' of undefined

  • User: append SUDO_USER if no uid has been set and SUDO_USER present

  • User: check permission of agent

  • KM: send outliers

  • KM: infinite retry for km connection

2.9.1

  • #3356 hot fix on startup system

2.9.0

  • #3278 --silent -s now does not print welcome message
  • #3345 #2871 #3233 pm2 -v will not spawn daemon anymore
  • #3341 update moment dependency
  • #3314 pm2 install --safe will now monitor new installation of module and will fallback to previous version if the module is failing (restart, fail on npm install)
  • #3314 module folder structure refactoring to keep independent dependencies for each modules
  • #3324 remove yarn installation of modules
  • #3273 pm2 --mini-list now print the right pid file
  • #3206 add flag to auto turn off auto exit with pm2-docker
  • #3036 Fix applying env PM2_CONCURRENT_ACTIONS correctly
  • #3346 do not chmod systemd script (was failing systemd script on orange pi)
  • #3347 Add --wait-ip option to override systemd initialization to wait for internet full connectivity
  • #3348 alias pm2-docker to pm2-runtime
  • #3350 Override HOME and USER when setting --uid to start module or application
  • #3351 alias pm2 ps to pm2 ls (docker style)

2.8.0

  • #2070 Fix sendDataToProcessId not working (@h091237557)
  • #2182 Add windowHide options in cluster mode (@soyuka)
  • #3206 By default in docker, pm2 will auto exit when no process are online (@dguo)
  • #3225 fix --lines accepting invalid values (@vmarchaud)
  • #3036 fix when PM2_CONCURRENT_ACTIONS was overriden everytime on node > 4 (@danez)
  • Add node 9 tests on CI (@Unitech)
  • Add pm2 unlink command (eq to pm2 link delete) (@Unitech)
  • Fix interactor to support custom endpoints (@vmarchaud)
  • Allow custom PM2_HOME for docker (@lucidNTR)
  • Support MJS module (@vpotseluyko)
  • Allow custom service name for startup (@danez)
  • Update PMX to 1.5 (@unitech)

2.7.2

  • #3200 Associate .tsx files with ts-node (@dguo)
  • #3202 Add first draft of typescript definitions (@jportela)
  • Allow to install http url via pm2 install (@unitech)
  • #3204 Given --uid add all its gids automatically (@jmeit)
  • #3184 bugfix: try/catch around userInfo to avoid crash (@vmarchaud)
  • #3181 force upgrade to latest pm2-deploy

2.7.1

  • #3117 Add required node env on cluster mode start instance (2m0nd)
  • make profiler compatible with Node.js 8

2.7.0

  • #3150 fix watchdog on agent
  • #3001 dump-backup feature
  • #3134 edge case error handling
  • #3096 fix module installation
  • #3085 honor every pm2 args on restart
  • #3046 better error message if PM2 is misconfigured
  • #3058 pm2-docker now does not write logs by default
  • #3045 continue to broadcast on the bus system even if logs are disabled
  • [Docker] Auto Exit when no application is running
  • [Keymetrics] pm2 unmonitor fix
  • [Beta Container Support] beta pm2 start app.js --container
  • [Chore] upgrade modules
  • [Chore] enhance package.json

2.6.1

  • #3037 bug fix cb

2.6.0

Changes

  • #2998 pm2 report command for automated system inspection
  • #2997 --disable-logs option to suppress error
  • #2290 allow to declare apps under "pm2" attribute (eq "apps"). Nicer in package.json
  • #2994 allow to specify typescript version to be installed
  • #2501 low memory environment pm2 setting via PM2_OPTIMIZE_MEMORY (beta)
  • #2968 pm2 attach <pm_id> to attach to process stdin / stdout
  • pm2-runtime -> drop in replacement for the node.js binary
  • #2951 pm2 reload command locker via timestamped lock file
  • #2977 pm2 reloadLogs protected
  • #2958 Allow to delete attribute via --attribute null
  • #2980 PM2_SILENT=true pm2 startup
  • #2690 --parallel command allows to change the nb of concurrent actions (reload/restart)
  • expose cwd on CLI via --cwd
  • multiple pm2-docker enhacements
  • Alias pm2.link and pm2.unlink to pm2.interact and pm2._pre_interact
  • Allow to customize kill signal via PM2_KILL_SIGNAL
  • Support git+http in module installation
  • force reverse interaction reconnection on internet discovery
  • --instances -1 when having a 1 cpu is no-longer spawning no processes #2953
  • refactor the context retrieving from error
  • add a TTL for file cache entry
  • #2956 Fix listen_timeout in combination with wait_ready
  • #2996 respect signal order on pm2 reload (delegate ready function to reload fn)

Breaking

  • Drop pm2-daemon CLI (replaced by pm2-runtime)

2.5

  • pm2 register|login to create new account / login on Keymetrics + auto link
  • pm2 open to open dashboard on browser
  • pm2 monitor|unmonitor <pm_id|name|all> for selective monitoring
  • #2818 alias pm2-docker to pm2-daemon
  • #2809 correctly resolve git/npm repo when running pm2 install
  • #2861 better auto exit check for docker
  • #2870 avoid null error when preparing app config
  • #2872 avoid showing useless warning
  • #438 allow to override daemon config paths via env (example: PM2_PID_FILE_PATH to override pid file of the daemon)
  • #2849 better gentoo template for pm2 startup
  • #2868 allow tailing log with --raw flag
  • #452 Add PM2_WEB_STRIP_ENV_VARS to remove environnement vars from pm2 web endpoint
  • #2890 Fix wait-ready for cluster mode
  • #2906 randomize machine name with default pm2 link
  • #2888 allow to use regex for pm2 logs
  • #2045 allow to rename NODE_APP_INSTANCE env variable
  • #2809 add increment_var options to ask for a environnement variable to be incremented for each application started
  • more informations when failing to deploy on custom ecosystem file
  • fix tests for node 8
  • fix missing callback when overriding console.log
  • allow to rename daemon process name via PM2_DAEMON_NAME
  • few typo in the readme

Breaking change

  • the NODE_APP_INSTANCE var behavior has been changed :
    • old behavior : when starting multiples instances of an app each one get an unique number, but its not working anymore if you are using pm2 scale (simply put its possible to have two application with the same number)
    • new behavior : the number are consistent, if you scale up/down it will take a number that isn't used by another application (so two application should never have the same number)

2.4.5/6

  • #2818 alias pm2-docker to pm2-runtime
  • #2815 polyfill for path.isAbsolute for node v0.11

Breaking change

  • rundev command has been dropped because of too low adoption

2.4.4

  • #2806 fix reconnection to keymetrics

2.4.3

  • #2759 disable default require of vxx in pmx
  • #2651 always spawn pm2 daemon with node binary
  • #2745 new issue template
  • #2761 Make JSON log stream timestamp in consistent format
  • #2770 Fix trigger API never calling callback
  • #2796 Fix absolute path on windows
  • [KM] profiler installation via pm2 install v8-profiler or pm2 install profiler
  • [KM] Agent rescue system

2.4.2

  • [KM] Disable pm2-server-monit auto install

2.4.1

  • #2720 multi user startup script
  • #2266 start and tail logs via pm2 start app.js --attach
  • #2699 add back previous termcaps interface via pm2 imonit
  • #2681 fix log folder create
  • #2724 make sure process is stopped even if there is a restart_delay
  • #2706 install pm2 modules via yarn if available
  • #2719 show 15 logs line bu default
  • #2703 allow custom timestamp with pm2-docker
  • #2698 fix unicode on pm2 monit
  • #2715 handle treekill edge case bug
  • Optimize CPU usage of pm2 monit command
  • [KM] URL web access dashboard
  • [KM] Auto install pm2-server-monit on keymetrics linking
  • [KM] Error reporting: add context (-B3 -A3 code lines)
  • [KM] Transaction Tracer: reset routes on app restart / wait some time before sending

2.4.0

  • #2631 new pm2 monit command (blessed dashboard!)
  • #2670 allow to expose a folder over http via pm2 serve <path> <port>
  • #2617 fix startup script generation on macosx (launchd)
  • #2650 new option to append env name to app name (used to allow the same app to be launched in different environment w/o name conflict)
  • #2671 allow to pass a delay to pm2-docker (pm2-docker process.json --delay 10)
  • pm2 ecosystem simple to generate a simple ecosystem file
  • aliasing: pm2-dev <script> <=> pm2-dev start <script>
  • fix git parsing when using cwd
  • #2663 allow to directly output json when logging (via log_type for JSON and --log-type via CLI)
  • #2675 fix path when installing language module like typescript
  • #2674 increase restart timeout for systemd startup
  • #2564 allow to operate process (restart/reload/stop/delete) with regex

2.3.0

  • Drop Node.js 0.10 support
  • (CLI) remove immutability of CLI parameters on restart (critical for ux)
  • Keymetrics VXX beta
  • Alias "exec" to "script"
  • pm2 logs --nostream allow to print last logs of application without attaching to logs bus #2620
  • Added startup script for gentoo v2.3 via PR #2625
  • optionalDependencies from http to https
  • remove agent pid on exit
  • #2646 check ps.stdout on treekil

2.2.3

  • Various startup refactor fixes (#2598, #2587, #2590)

2.2.2

  • #2574 Support Amazon systemv

2.2.1 (rc: 2.2.0@next)

  • #2559 New startup system. Supported init system: systemd, upstart, launchd

    $ pm2 startup # Auto detect available init system + Setup init scripts $ pm2 unstartup # Disable and Remove init scripts

SystemD, Upstart and Launchd scripts work like a charm

  • #2515 New way to install PM2 on Debian based system:
$ wget -O - http://apt.pm2.io/ubuntu/apt.pm2.io.gpg.key | sudo apt-key add -
$ echo "deb http://apt.pm2.io/ubuntu xenial main" | sudo tee /etc/apt/sources.list.d/pm2.list
$ sudo apt-get update
$ sudo apt-get install pm2
  • #1090 pm2 resurrect does not respawn the same processes
  • #2544 Attach logs to exception
  • #2545 Right exit code via pm2 api
  • #2543 Fix module pid/mem monitoring
  • #2537 Remove duplicated code in Configuration subsystem
  • Responsive pm2 list (shortened list when < 90 columns)
  • If not TTY do not print ascii table
  • #2509 Trigger functions inside Node.js application from the PM2 CLI
  • Rename pm2.triggerCustomAction() by pm2.trigger(<app_id>, <action_name>, [params], [cb])

2.1.6

  • #2509 Trigger functions inside Node.js application from the PM2 CLI
  • #2474 Resolve home path in configuration file
  • #2526 Expose .launchAll() method to API
  • #2351 inner pm2 actions - drop autorestart and node_args options
  • #2530 Make sure all processes are killed on system signal to PM2
  • #281 allow to combine PM2_SILENT + pm2 jlist to avoid extra data
  • Alias attributes error_file to err_file + err_log + err, alias out_file to out, out_log
  • Do not ask for pass for set/multiset from KM

2.1.5

  • #2502 fix SIGTERM signal catch on pm2-docker
  • #2498 #2500 global log rotation

2.1.4

  • #2486 add --web option to pm2-docker command to expose web process api
  • #2333 #2478 #1732 #1346 #1311 #1101 Fix GracefulShutdown SIGINT output + Better Stop process flow
  • #2353 --wait-ready will wait that the application sends 'ready' event process.send('ready')
  • #2425 allow to specify node.js version to be used or installed via interpreter 'node@VERSION'
  • #2471 Make app environment immutable on application restart/reload by default for CLI actions
  • #2451 Config file can be javascript files
  • #2484 fix pm2 kill on windows
  • #2101 pm2 ecosystem now generates a javascript configuration file
  • #2422 allow to pass none to exec_interpreter
  • Faster CLI load time, reduce load time by 1/4 (downgrade cli-table2 -> cli-table)
  • Do not use disconnect() anymore on cluster processes
  • Better Stop process flow: Upgrade TreeKill system + Wait for check
  • Fix deploy issue with Windows
  • Expose -i to pm2-docker
  • Drop npm-shrinkwrap
  • Upgrade chokidar (fix symlink), cron, fclone, shelljs
  • Add yarn.lock

2.0.19

  • #2466 skip cluster workaround / fix cluster mode for Node.js v7
  • Enable Node v7 in travis

2.0.16/17/18

  • #2400 Create log/pid default folder even if the root folder is already created
  • #2395 CRON feature now call PM2 for app to be killed (allow to use SIGINT)
  • #2413 #2405 #2406 do not exit on unhandledRejection auto catch
  • pidusage upgrade to 1.0.8 to avoid util exception on windows when wmic fail
  • Do no display error when pidusage try to monitor an unknow PID (modules)
  • pm2-docker binary does not need the start option

2.0.15

  • process.on('unhandledRejection'): allow to catch promise error that have not been catched
  • upgrade fclone and pidusage (faster windows CPU/Mem monitoring)
  • allow to call pm2 CLI from bash script managed by pm2
  • #2394 fix pm2 id command
  • #2385 ts-node upgraded to latest
  • #2381 autocompletion fix

2.0.12 Bradbury

  • Memory usage reduced by 40%
  • CPU usage in overall situations reduced by 60%
  • Refined pm2 logs command with --json, --format and --raw options
  • Faster process management with CONCURRENT_ACTIONs enabled
  • Faster installation (v1: ~30secs, v2: ~10secs)
  • Faster pm2 update with Keymetrics linking delayed at the end
  • Much better Module system with raw NPM feedback
  • Better Windows support
  • pm2-docker command with his official Docker image + json output + auto exit
  • pm2-dev -> pmd command enhanced (better log output, post-exec cmd)
  • Watch and Reload instead of Watch and Restart
  • New PM2 API, backward compatible with previous PM2 versions

The new PM2 API is greatly tested and well designed:

var PM2 = require('pm2');

// Or instanciate a custom PM2 instance

var pm2 = new PM2.custom({
  pm2_home :    // Default is the legacy $USER/.pm2. Now you can override this value
  cwd      :    // Move to CWD,
  daemon_mode : // Should the process stay attached to this application,
  independant : // Create new random instance available for current session
  secret_key  : // Keymetrics secret key
  public_key  : // Keymetrics public key
  machine_name: // Keymetrics instance name
});

// Start an app
pm2.start('myapp.js');

// Start an app with options
pm2.start({
  script   : 'api.js',
  instances: 4
}, function(err, processes) {
});

// Stop all apps
pm2.stop('all');

// Bus system to detect events
pm2.launchBus((err, bus) => {
  bus.on('log:out', (message) => {
    console.log(message);
  });

  bus.on('log:err', (message) => {
    console.log(message);
  });
});

// Connect to different keymetrics bucket
pm2.interact(opts, cb)

// PM2 auto closes connection if no processing is done but manually:

pm2.disconnect(cb) // Close connection with current pm2 instance
pm2.destroy(cb)    // Close and delete all pm2 related files of this session
  • Better CLI/API code structure
  • PM2 isolation for multi PM2 instance management

Bug fixes

  • #2093 #2092 #2059 #1906 #1758 #1696 replace optional git module with tgz one
  • #2077 fix calling pm2.restart inside pm2
  • #2261 GRACEFUL_LISTEN_TIMEOUT for app reload configurable via --listen-timeout
  • #2256 fix deploy command for yaml files
  • #2105 alias pm2 logs with pm2 log
  • Extra module display http://pm2.keymetrics.io/docs/advanced/pm2-module-system/#extra-display
  • Yamljs + Chokidar Security fixes
  • pm2 update / pm2 resurrect is now faster on Node > 4.0
  • keymetrics linking after pm2 update is done once all apps are started
  • pm2 list processes are now sorted by name instead id
  • #2248 livescript support added in development mode
  • The client/server file called Satan.js does not exist anymore. It has been replaced by the file combo ./lib/Client.js and ./lib/Daemon.js
  • PM2 --no-daemon is better now

Breaking change

  • Coffeescript must be installed via pm2 install coffeescript

1.1.3

  • Node v6 compatibility

1.1.2

  • [#2071 #2075] Fix pm2-dev command

1.1.0: Galactica release

This release is about PM2's internals refactoring, homogenization in action commands (in terms of behavior and outputs). Some interesting features has been added, as YAML file support (for application declaration) and some syntaxic sugar. The Keymetrics interface has been enhanced, dividing by two the memory usage and avoiding any possible leak in any potential scenarios. Reconnection system has been refactored too, we kindly ask our Keymetrics users to upgrade to this version ASAP.

This version has been heavily tested in testing, production environments and deeply monitored in terms of CPU and Memory usage.

  • [#133 #1568] Allow to rename a process via pm2 restart app --name "new-name"
  • [#2002 #1921 #1366] Fix CLI/JSON arguments update on restart (args, node_args, name, max-memory)
  • [#578] Add YAML support for application configuration file (in extent to JSON and JSON5 support)
  • [Keymetrics agent refactoring] TCP wait, memory consumption divided by two, reconnection refactoring, keep alive ping system
  • [Keymetrics agent refactoring] Fix random no response from pm2 link and pm2 unlink
  • [#2061] Kill ESRCH of processes in cluster mode with SIGINT catcher fixed
  • [#2012 #1650 #1743] CLI/JSON arguments update on reload
  • [#1613] Reload all reload ALL applications (stopped, errored...)
  • [#1961] Fix kill timeout info log
  • [#1987] Fix FreeBSD startup script
  • [#2011] Respect process.stdout/.stderr signature
  • [#1602] Fix zombie process when using babel-node as interpreter
  • [#1283] --skip-env option to not merge update with system env
  • Homogeneize actions commands outputs
  • Option --interpreter-args added (alias of node-args)
  • Allow to use exactly the same option in JSON declaration and CLI (e.g. interpreter) to avoid confusion
  • pm2 show, now shows more commands to manage processes
  • Refactor programmatic system

1.0.2

  • [#1035 #1055] Deactivate automatic dump on startup scripts
  • [#1980] Add Javascript source map resolution when exceptions occurs Documentation
  • [#1937] Allow to act on application having numerics as app name
  • [#1945] Fix post_update commands section when file contains Javascript
  • [#624] --only to act only on specified app name in json app declaration
  • 0.6.1 PMX upgrade

1.0.1

  • [#1895] pm2 id <app_name>: output array of ids for app_name @soyuka
  • [#1800] pm2 show <app_name>: now also display node.js version @soyuka

1.0.0

  • [#1844][#1845][#1850] Load configuration in /etc/default/pm2 + add ulimit -n override

  • [#1810] Add --kill-timeout option (delay before process receive a final SIGKILL)

  • [#1830] Add tests for PM2_KILL_TIMEOUT (SIGKILL delay) + default SIGINT to any kind of procs

  • [#1825] Process management commands (start/restart/stop/delete) can take multiple arguments

  • [#1822] Add new method pm2.sendDataToProcessId(type|data|id) to send data to processes

  • [#1819] Send SIGINT signal to process instead of SIGTERM

  • [#1819][#1794][#1765] Avoid writing on std err/out when process is disconnected

  • Add default attribute in schema.json to allow to configure default value when passing a JSON

  • JSON and CLI starts are now consistent in terms of option size, attribute number

  • pm2.restart(json_data, function(err, data) now returns an array of process instead of simple object (success:true))

  • Now pm2 restart process.json --env , refresh environment variable on each restart depending of the X environment

  • prepareJSON method in PM2 code (God.js) removed

  • partition Common.prepareAppConf (duplicate with verifyConfs)

  • Change signature of Common.prepareAppConf

  • Centralize Interpreter resolution via Common.sink.resolveInterpreter(app) in Common.js

  • Better meta information when process restart/reload/stop (signal + exit code)

  • Upgrade pm2-axon, cron, should, mocha, coffee-script, chokidar, semver NPM packages

  • Show process configuration option when describing process

  • Add --no-automation flag

  • Fix when starting application with illegal names (#1764)

  • Fix management of app starting with numerics in the filename (#1769)

  • Fix versiong system (reset to default on resurrect/prepare)

  • Increase buffer size for versioning meta parsing

0.15.10

  • Hot fix #1746

0.15.9

  • Chokidar upgraded to 1.2
  • Fix startup script via new --hp option
  • Fix JSON refresh system

0.15.1-8

  • JSON refresh available
  • New module system backward compatible and compatible with NPM 3.x
  • Possibility to install module from tgz (#1713)
  • ecosystem generated file via pm2 generate uptaded (not json5 prefix anymore, and updated comments)
  • always prefix logs #1695
  • blessed dependency removed
  • drop locking system
  • add callback to deploy (#1673)
  • typo fixes
  • pm2.update added
  • small db for pm2 modules added (solve npm 3.x issue)
  • pm2 multiset "k1 v1 k2 v2 k3 v3"
  • babel dependency removed
  • blessed dependency removed
  • chalk, safe-clone-deep, shelljs, semver upgraded
  • New command: pm2 module:update <module_name> -> Update a module
  • New command: pm2 module:publish -> Publish module in current folder + Git push
  • New command: pm2 module:generate [module name] -> Generate a sample module
  • Feature: configuration system for raw Node.js applications
  • alias pm2 install with pm2 i
  • JSON declaration: You can now use process.env in application declaration file
  • watch has been refactored for windows and tests
  • allow installation of specific module version
  • wrap final process kill intro try catch (c4aecc8)
  • Appveyor to test PM2 under Windows added (+ fix some incorect file name)
  • Allow to escape key name when using pm2 conf system

0.14.7

  • New flag --no-pmx : starts an app without injecting pmx
  • New feature : cron restart now works in fork mode as well
  • Disabled auto-gc on interactor
  • Allow PM2 to execute binaries in $PATH
  • pm2 link priv pub --recyle for elastic infrastructure
  • pm2 deploy now check default file ecosystem.js[on|on5], package.json

0.14.6

  • Scoped PM2 actions
  • Password encryption via pm2 set pm2:passwd xxxx
  • Interactor Remote action refactor
  • .getSync method to get configuration variable synchronously
  • Add password protected PM2 methods (install, delete)
  • pm2 get|pm2 conf display all confs
  • Password protected PM2 flag
  • New flag : --restart-delay <ms> (or restart_delay in JSON declaration)
  • New command : pm2 deepUpdate
  • New command (beta) : pm2 logrotate
  • Enhancement : pm2 handles processes that can't be killed in a better way
  • Fix : some ignore_watch issues
  • Fix : some pm2 startup systemd issues

0.14.5

  • Hot fix

0.14.4

  • New command : pm2 iprobe [app_name|app_id|'ALL']
  • Feature: FreeBSD startup script
  • Fix: Remove forced GC
  • Fix: ##1444 --next-gen-js in fork mode
  • Fix: Windows path fix

0.14.3 (Current Stable)

  • pm2 flush now flushes pm2.log as well
  • New flag : --no-treekill : when used PM2 won't kill children processes
  • New flags : pm2 logs ['all'|'PM2'|app_name|app_id] [--err|--out] [--lines <n>] [--raw] [--timestamp [format]]
  • Enhancement: Modules installable via Github: pm2 install username/repository
  • Feature: PMX has scoped function -> pm2 stores temporary output from custom functions
  • Fix: Interactor issue when doing an heapdump
  • Feature: PM2 CLI autocompletion

0.14.2

  • Improved pm2-dev
  • Now when apps list is empty, the id counter is set to 0
  • Removed pres/keymetrics.js post-install script
  • Fix : pm2 logs allocation error
  • Fix : pm2 prettylist|jlist truncated output

0.14.0 - CrystalClear (pre 1.0)

  • Removed: pm2.startJSON() method, now call pm2.start()

  • API Change: pm2 start <app_name|app_id> restart an application already launched

  • API Change: pm2 start restart all json apps if already launched

  • pm2 start all - restart all applications

  • pm2 reload <json_file> possible

  • pm2 gracefulReload <json_file> possible

  • Smart start (pm2 start app.js ; pm2 stop app ; pm2 start app)

  • Reduced memory footprint

  • Reduced pipelined data

  • Reduced CPU usage

  • Faster command processing

  • Upgrade shelljs, semver, colors, chalk, coffee-script, async, json-stringify-safe, cron, debug, commander

  • Fix: launchBus() only connects and disconnects once

  • Refactored pm2 logs :

    • Now you don't need to install tail on Windows
    • You don't need to Ctrl^C and pm2 logs again when a new app is launched (this one will be detected and added to the real-time logs output)
    • Logs are shown in chronological order at a file level (modified date)
    • More verbosity : tailed logs are explicitely separated from the real-time logs
    • Real-time logs now use the bus event emitter
    • PM2 logs added to the bus
    • --lines <n> and --raw flags available for pm2 logs command
    • New flag : '--timestamp [format]' // default format is 'YYYY-MM-DD-HH:mm:ss'
    • Now you can exclusively show PM2 logs by doing pm2 logs PM2

0.12.16

  • Feature : File transmission added in Agent
  • Feature : Transmit Node.js/io.js version in Agent
  • Feature : Parameters can be passed to remote actions
  • Feature : Support JS in addition to JSON and JSON5 config files #1298
  • Enhanced: pm2 conf display all configuration values
  • Enhanced: pm2-dev
  • Enhanced: Better error messages when validating data passed via CLI
  • Enhanced: Smaller memory footprint for PM2 (~30%)
  • Fix #1285 : PID file was deleted after a reload/gracefulReload
  • Fix : ENOMEM made PM2 crash

0.12.15

  • Fix #941 : Env variables overrided when an app is restarted
  • max_memory_restart now performs a graceful reload
  • pm2 logs --raw now shows 20 last lines of each log file
  • pm2-dev run app.js : start an app in dev mode (--no-daemon --watch and stream logs of all launched apps)
  • --no-daemon command now display logs of all processes (Docker)

0.12.14

  • ilogs is no longer part of PM2
  • Improved interaction with Keymetrics
  • BabelJS is now integrated into PM2 (--next-gen-js flag)

0.12.13

  • Enhanced : PM2 doesn't leave processes behind when it crashes
  • Enhanced : Call reload instead of restart when max-memory-limit reached
  • Enhanced : Modules are compatible ES6 by default by adding --harmony flag
  • Enhanced : Dump feature is now smarter
  • Fix #1206 : fix pm2 logs bug when merged_logs
  • Fix : pm2 scale doesn't try to scale a fork_mode process

0.12.12

  • pm2 logs --raw flag : show logs in raw format
  • New command: pm2 scale <app_name> - scale up/down an application
  • Fix #1177 : no concurrent vizion.parse() for the same process event when it restarts
  • Added: Expose kill method programmatically
  • Added: Call disconnect without a function
  • Added: Programmatic call to .connect can now take no-daemon-option
  • Fixed: starting a JSON programmatically return a process list coming from God
  • Fixed: Reflect dump functions from CLI and God
  • Enhanced: New CLI API for configuring modules (pm2 conf module.option [value])
  • Added: Using Keymetrics harden PM2 by enabling a WatchDog that auto restart PM2 in case of crash
  • Added: Expose pm2 gc programmatically
  • Added: pm2 install <module_name> update the module
  • Enhanced: 4 new test suits for PM2 programmatics call
  • Enhanced: Documentation restructured

0.12.11

  • --no-autorestart flag : starts an app without automatic restart feature ("autorestart" : false in JSON declaration)

  • --no-vizion flag : starts an app completely without vizion features ("vizion" : false in JSON declaration)

  • Fix #1146 : add module._initPaths() on ProcessContainer.js so it forces each new process to take the current NODE_PATH env value in account

  • New: pm2.start() now handles json objects as param

  • Added: timestamps to KM agent logs

  • Fix: now properly closes all fds after logging has finished.

  • New command: pm2 gc (manually triggers garbage collection for PM2)

  • VersioningManagment: exec() timeout configurable via .json

  • Fix #1143 : If we start let's say 4 instances of an app (cluster_mode), Each app will have a value in process.env.NODE_APP_INSTANCE which will be 0 for the first one, 1, 2 and 3 for the next ones.

  • Fix #1154 : Negative arguments to '-i' are substracted to CPU cores number. E.g: 'pm2 start app.js -i -3' in a 8 cpus environment will start 5 instances (8 - 3).

0.12.10

  • Fix : PM2 interactor doesn't send data about dead processes ('old') anymore.
  • Fix #1137 : Safe params for 'pm2 list' so cli-table won't fail
  • Refactored reverse interaction with keymetrics for better stability and more verbosity on Rollback/Pull/Upgrade operations

0.12.9

  • Fix #1124 : PM2_PROGRAMMATIC flag wasn't handled properly
  • Fix #1121 : NODE_PATH before PATH so custom node versions come first
  • Fix #1119 : Safe params so cli-table won't fail
  • Fix #1099 : Bug when app name starts by digit (e.g '1-myApp')
  • Fix #1111 : More verbosity on writeFileSync errors
  • New env setting: PM2_KILL_TIMEOUT (ms) : time to wait before a process is considered dead
  • New env setting: PM2_CONCURRENT_ACTIONS : use it with care, value bigger than 1 is considered unstable
  • Refactored reload/gracefulReload for better stability

0.12.8

  • Fix : Channel closed error
  • Fix : Resource leak error
  • Fix#1091 : when passing a wrong formated number to -i infinite loop
  • Fix #1068 #1096 : restart fails after reloadLogs()
  • New : When PM2 is being killed, all restarts are blocked to avoid conflict
  • New : PM2 dumps the process list before exiting if it is killed by signal
  • Refactored stop/restart for better stability

0.12.7

  • pm2 logs : Now shows merged logs
  • Fix #929 #1043 : Bug pm2 stop/restart not working properly
  • Fix #1039 : Better algorithm for vision recursive parsing to avoid infinite loops
  • Automatize #858 #905: Directly init pm2 folder if not present when using it programmatically
  • Add Bus system from PM2 programmatic API

0.12.6

  • Enhancement of startJson command (force_name and additional_env options)
  • Fix #990 : pm2 flush while pm2 logs was open bug
  • Fix #1002 : pm2 monit bug
  • Fix #1024 : enhancement
  • Fix #1011 : json-stringify-safe bug
  • Fix #1007 ##1028 #1013 #1009 : pm2 desc bug
  • Fix : pm2 interact delete when file doesn't exist bug

0.12.5

  • Windows support

0.12.4

  • Never start a process that already has a PID [#938]
    1. Make platform auto detecting. 2. Support darwin startup script. [#936]
  • Fix #857 #935, add scriptArgs back [d61d710]
  • Fix broken link upstart [f8ff296]
  • Fixed: multiple calls to vizion.parse() for the same process [0e798b1]
  • fix 2015 test easter egg - Happy New Year! [85d11d5]
  • fixes #906 [#911]
  • Add back automatic coffee interpreter #488 #901 [e9a69fe]
  • Upgrade cli-table, commander, colors, moment dependencies [0cc58ce][a4b7d8d]
  • Domain system to patch fix the exception thrown by the cluster module
  • Fix #830 #249 #954 when there is no HOME env to default to /etc/.pm2 [17d022c]

0.12.3

  • fixed critical bug: process.env flattens all env-vars [#898]
  • npm maintainers format [#894]
  • fix pm2 desc crash bug [#892]
  • fix CLI typo [#888]
  • port config [#885]

0.12.2

  • treeKill copyright and update [#848] [#849]
  • Allow environment variables per each ecosystem deploy [#847]
  • max-memory-restart option [#697] [#141]
  • JSON validation (cf ADVANCED_README.md) [#768] [#838]
  • CLI/JSON refactoring
  • watch fixes
  • execute binary softwares
  • node_args refactored (ESC support) [#838]
  • reload env graceful and peaceful [#838]
  • min_uptime added [#838]
  • startOrRestart conf.json does update environment variables [#805]
  • vizion only refresh ahead and unstaged flags [f1f829c]
  • worker restart cluster process if it's equal to 0 && online [c2e3581]
  • pm2 pull [commit_id] [c2e3581] [4021902]
  • fix reloadLogs for fork mode [c0143cc][197781e]
  • waterfall logs stream [#822]
  • --log option to have a merged error and out output [#822]
  • God core refactors
  • test refactoring
  • update isBinaryFile [636fd99]
  • pid deletion has been resurected [f2ce631]
  • worker refactor [29fc72b]
  • fix no color [3feead2]
  • upgrade chokidar 0.12 with follow symlink [4ac0e74]
  • refactor Reload [cf94517][f1eb17]
  • avoid truncate with pm2 logs command [26aff8b]
  • God print log with timestamp via PM2_LOG_DATE_FORMAT [bf2bf8a][3eaed07]
  • better test suit
  • new treekill system [11fe5f4]

Big thanks to @Tjatse !

0.12.1

  • Harden Lock system
  • Fix Worker bug / Refactor Worker
  • Cleanly close interactor sockets on end
  • Add backward compatibility for older PM2 on kill action via system signal SIGQUIT
  • once listener for killDaemon

0.12.0 - clear water ops

  • better ecosystem.json5 file with embedded comments
  • startOrRestart conf.json update environment variables #805 #812
  • pm2 start my/bin/file work out of the box
  • JSON5 support
  • PM2_HOME supported - PM2 files paths relocation (logs, pid) via PM2_HOME option
  • post_updates commands are searched in process.json/ecosystem.json/package.json
  • Worker system to verify up to date repositories
  • Rename process running with PM2 - app_name
  • Process Lock system
  • Inner iteraction with PM2 possible #782
  • Better vizion system
  • backward / forward / pull command
  • Doc moved to doc
  • remove uidnumber module
  • pre install / post install scripts removed
  • Remote Lock System
  • More God tests
  • GRACEFUL_LISTEN_TIMEOUT constant configurable
  • Logs are closed in Fork mode when reloading
  • Fix not tty
  • Fix cluster structure nullification
  • Pre Windows Support
  • Send revision process on each process event
  • Upgrade Commander (better help display)
  • Upgrade chokidar to 0.10.x
  • Better interactor
  • Better revision parsing
  • Configuration file
  • Close fd in fork mode while reloading
  • Remove --run-as-user option
  • Better CLI interface for interactor
  • axm:monitor axm:dynamic
  • Temporaly merge pm2-interface with pm2
  • Cache cpu infos
  • Make revision transit in God.bus broadcast
  • Ignore useless events in God.bus broadcast

0.11.0-1

  • Multi user support and privilege containment: UNIX sockets instead of TCP
  • Reload refactoring
  • Process on uncaughtexcption to flush process list
  • pm2 logs display state change of processes

0.10.x

  • multi host for pm2 deploy
  • fork mode by default
  • fix watch on clusters
  • refactor watch
  • env option via programmatic interface
  • fix watch system
  • correct pm2 describe command
  • close file used via pm2 flush
  • add startOrReload
  • better closing events

0.10.0 - PM2 Hellfire release

  • PM2 hearth code has been refactored and now it handles extreme scenario without any leak or bug
  • PM2 restart <json|id|name|all> refresh current environment variables #528
  • PM2 delete all more verbose
  • PM2 reset <all|id|name> reset restart numbers
  • Auto update script at PM2 installation
  • --watch enhanced to avoid zombie processes
  • Restart app when reaching a limit of memory by using --max-memory-restart (and max_memory_restart via JSON)(https://github.com/Unitech/pm2#max-memory-restart)
  • PM2 respects strong unix standard process management
  • Remove timestamps by default with pm2 logs
  • Coffeescript not enabled by default anymore (enhance memory usage)
  • PM2 Programmatic interface enhanced
  • PM2 hearth refactor
  • PM2 describe show node-args
  • node_args for V8 options is now available via JSON declaration
  • Watch system avoid ghost processes
  • Memory leak fixes
  • Better performance on interface
  • Fix tests
  • Enable PM2_NODE_OPTIONS and node-args for fork mode
  • Dependencies updated
  • Faster monitoring system
  • AXM actions unification
  • Socket errors handled
  • Watchdog via Agent - restart automatically PM2 with previous processes in case of crash
  • PM2_NODE_OPTIONS deprecation (use --node-args instead)

0.9.6 - 0.9.5 - 0.9.4

  • Bash test auto exit when failure
  • Bump fix log streaming
  • Bump fix to display old logs streaming by default
  • Bump fix

0.9.3

  • Critical bug on fork mode fixed (stream close)
  • Advanced log display interface pm2-logs #589
  • Simple log timestamp via --log-date-format (with momentJS formating) #183
  • Possible to pass arguments via scriptArg with programmatic PM2 #591
  • Gentoo startup script generation #592
  • Fix run-as-user and run-as-group in fork mode #582
  • Documentation update

0.9.2

  • max_restart enabled
  • sudo fix for init scripts
  • some startup refactoring
  • Possibility to specify the configuration folder for PM2 via process.env.PM2_HOME
  • Fix date format
  • N/A for undefined date
  • Evented interactions with PM2, available via pm2-interface
  • Deep Interactor refactoring
  • Force reload for upstart script

0.9.0-0.9.1

  • CLI flattening
  • require('pm2') possible to interact with
  • deployment system
  • Remove builtin monitoring feature
  • Fix watch on delete #514
  • Gracefull reload now rightly handled #502
  • Allow path in watch option #501
  • Allow management of non-interpreted binaries #499
  • Documentation fixes

0.8.12-0.8.15

  • Version bumping

0.8.12

  • Fix CWD option #295

0.8.10-0.8.11

  • Builtin monitoring feature with email (with pm2 subscribe)
  • Reload Logs for Fork
  • Deletion of possible circular dependencies error
  • pm2 updatePM2 command to update in-memory pm2
  • notification message if the in-memory pm2 is outdated
  • cwd option in json #405 #417 #295
  • README updates
  • ipc channel for fork mode
  • re enable process event loggin for interactor
  • avoid possible stream error
  • watch ignore option in JSON

0.8.5-6

  • Update monitoring module

0.8.4

  • Remove C++ binding for monitoring
  • Update axon and axon-rpc

0.8.2

  • Adds option to switch to a different user/group before starting a managed process #329
  • watch doesnt watch node_module folder
  • default log files and pid files location can be overrided by PM2_LOG_DIR / PM2_PID_DIR

0.8.1

  • Readme changes #400 #398
  • Fix describe command #403
  • reload/gracefulReload throw error if no process has been reloaded #340

0.8.0

  • More verbosity to pm2.log
  • Fast Watch & Reload
  • New README.md
  • --merge-logs option to merge logs for a group of process
  • logs reload with SIGUSR2 or pm2 reloadLogs
  • return failure code when no process has been reloaded
  • Upgrade of outdated packages
  • Silent (-s) flag remove all possible pm2 output to CLI
  • New display for list, more compact
  • pm2 describe <id> to get more details about a process
  • Fixed 0.10.x issue when stop/kill
  • Helper shown when -h
  • Linter errors
  • Systemd support for Fedora / ArchLinux
  • #381 Add support for Amazon Linux startup script
  • Fixed rendering
  • Interaction possible with VitalSigns.io
  • Avoid exception when dump file is not present

0.7.8

  • List processes with user right service pm2-init.sh status

0.7.7

  • Bug fixes, stability fixes

0.7.2

  • harmony can be enabled Enabling harmony
  • can pass any options to node via PM2_NODE_OPTIONS, configurable via ~/.pm2/custom_options.sh
  • pid file written in ~/.pm2/pm2.pid
  • startup script support for CentOS
  • --no-daemon option (Alex Kocharin)
  • json file now can be : started/stoped/restarted/deleted
  • coffeescript support for new versions (Hao-kang Den)
  • accept JSON via pipe from standard input (Ville Walveranta)
  • adjusting logical when process got an uncaughtException (Ethanz)

Update from 0.x -> 0.7.2

  • CentOS crontab option should not be used anymore and use the new init script with pm2 startup centos
  • If you use the configuration file or the harmonoy option, you should regenerate the init script

0.7.1

  • Integrates hardened reload, graceful reload and strengthened process management

0.7.0

  • Reload works at 100%
  • Logs are now separated by process id
  • Minimal listing with -m option
  • pid files are deleted once process exit
  • ping method to launch or knwo if pm2 is alive
  • more tests
  • coffeescript is supported in cluster mode
  • clean exit
  • clean process stopping
  • speed process management enhanced
  • async used instead of recuresive loops
  • broad test for node 0.11.10 0.11.9 0.11.8 0.11.7 0.11.5 0.10.24 0.10.23 0.10.22 0.10.21 0.10.20 0.10.19 0.10.18 0.10.17 0.10.16 0.10.15 0.10.14 0.10.13 0.10.12 0.10.11 0.8

0.6.8

  • Homogeneize JSON #186
  • Auto intepreter selection (you can do pm2 start app.php)

0.5.6

  • Coffeescript support
  • Updating dependencies - axon - commander
  • Log feature enhanced - duplicates removed - name or id can be passed to pm2 logs xxx

0.5.5

  • Ability to set a name to a launched script + tests
    • with the --name option when launching file
    • with the "name" parameter for JSON files
  • Ability to restart a script by name + tests
  • Upgrade node-usage to 0.3.8 - fix monitoring feedback for MacOSx
  • require.main now require the right file (activate it by modifying MODIFY_REQUIRE in constants.js)
  • CentOS startup script with pm2 startup centos
  • 0 downtime reload

0.5.4

  • Remove unused variable in startup script
  • Add options min_uptime max_restarts when configuring an app with JSON
  • Remove pid file on process exit
  • Command stopAll -> stop all | restartAll -> restart all (backward compatible with older versions)

0.5.0

  • Hardening tests
  • Cron mode to restart a script
  • Arguments fully supported
  • MacOSx monitoring possible