File tree 5 files changed +41
-10
lines changed
5 files changed +41
-10
lines changed Original file line number Diff line number Diff line change 4
4
"intro": "",
5
5
"branch" : "development",
6
6
"repo_url": "https://github.com/Unitech/pm2",
7
- "version_name" : "3.0.1 ",
8
- "tag": "3.0.0 ",
7
+ "version_name" : "3.0.3 ",
8
+ "tag": "3.0.2 ",
9
9
"file": "currentTagChangelog.md",
10
10
"template": "changelogTemplate.md",
11
11
"sections": [
Original file line number Diff line number Diff line change 1
- ## 3.0.1 ( Mon Jul 23 2018 14:13:35 GMT+0200 (CEST) )
1
+ ## 3.0.3 ( Tue Aug 07 2018 23:35:05 GMT+0200 (CEST) )
2
+
3
+
4
+ ## Bug Fixes
5
+ - pm2 plus + register
6
+ ([ 277ec6ba] ( https://github.com/Unitech/pm2/commit/277ec6ba8d1cdda7f8fdf11eb9d9d33c2c095d65 ) )
7
+
8
+
9
+
10
+
11
+ ## 3.0.2 ( Tue Aug 07 2018 23:35:05 GMT+0200 (CEST) )
12
+
13
+
14
+ ## Bug Fixes
15
+ - allow tracing activation
16
+ ([ f297ef1e] ( https://github.com/Unitech/pm2/commit/f297ef1ebbec292aedcfa48c27e3f31b8f206633 ) )
2
17
3
18
19
+
20
+
21
+ ## Branchs merged
22
+ - Merge branch 'development'
23
+ ([ 80c94dd3] ( https://github.com/Unitech/pm2/commit/80c94dd3261544f627612ce4b541356e4adbc51f ) )
24
+
25
+
26
+
27
+
28
+ ## 3.0.1 ( Mon Jul 23 2018 14:13:35 GMT+0200 (CEST) )
29
+
4
30
## Bug Fixes
5
31
- allow to set a name via pm2 link
6
32
([ ebffb609] ( https://github.com/Unitech/pm2/commit/ebffb609cf4da195c72ee67d8341c63b78f0654e ) )
Original file line number Diff line number Diff line change @@ -145,7 +145,14 @@ module.exports = function(CLI) {
145
145
} ) . then ( res => {
146
146
const bucket = res . data . bucket
147
147
console . log ( chalk . bold . green ( '[+] Bucket created!' ) )
148
- self . link ( bucket , ( ) => {
148
+
149
+ var connection_info = {
150
+ public_key : bucket . public_id ,
151
+ secret_key : bucket . secret_id ,
152
+ pm2_version : pkg . version
153
+ }
154
+
155
+ self . link ( connection_info , ( ) => {
149
156
finalize ( bucket )
150
157
} )
151
158
} )
Original file line number Diff line number Diff line change @@ -14,14 +14,12 @@ module.exports = {
14
14
15
15
var activate = process . env . km_link == 'true' || process . env . deep_monitoring === 'true' || false ;
16
16
17
- // transaction: {
18
- // tracing: activate
19
- // },
20
-
21
17
let defaultConf = {
18
+ transactions : ( process . env . trace === 'true' || process . env . deep_monitoring === 'true' ) || false ,
19
+ http : activate ,
22
20
metrics : {
23
21
deepMetrics : activate ,
24
- v8 : activate
22
+ v8 : activate || process . env . v8 === 'true'
25
23
} ,
26
24
actions : {
27
25
eventLoopDump : activate ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " pm2" ,
3
3
"preferGlobal" : true ,
4
- "version" : " 3.0.1 " ,
4
+ "version" : " 3.0.3 " ,
5
5
"engines" : {
6
6
"node" : " >=4.0.0"
7
7
},
You can’t perform that action at this time.
0 commit comments