whatap 0.4.80 → 0.4.81

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -104,7 +104,7 @@ HttpObserver.prototype.__createTransactionObserver = function(callback, isHttps,
104
104
  var step = new MessageStep();
105
105
  step.hash = originUrlHash;
106
106
  step.start_time = ctx.getElapsedTime();
107
- step.desc = req.url;
107
+ // step.desc = req.url;
108
108
 
109
109
  DataTextAgent.MESSAGE.add(originUrlHash, 'Origin url');
110
110
  ctx.profile.add(step);
@@ -211,6 +211,7 @@ function initCtx(req, res) {
211
211
  DataTextAgent.HTTP_DOMAIN.add(ctx.http_host_hash, ctx.http_host);
212
212
  }
213
213
 
214
+ ctx.originUrl = req.url;
214
215
  ctx.start_malloc = ResourceProfile.getUsedHeapSize();
215
216
  ctx.start_cpu = ResourceProfile.getCPUTime();
216
217
  ctx.http_method = req.method;
@@ -282,6 +283,13 @@ function initCtx(req, res) {
282
283
  ctx.mcaller_txid = Hexa32.toLong32(mt_caller.substring(y + 1));
283
284
  } else {
284
285
  ctx.mcaller_txid = Hexa32.toLong32(mt_caller.substring(y + 1, z));
286
+
287
+ var z2 = mt_caller.indexOf(',', z + 1);
288
+ if (z2 < 0) {
289
+ ctx.mcaller_stepId = Hexa32.toLong32(mt_caller.substring(z + 1));
290
+ } else {
291
+ ctx.mcaller_stepId = Hexa32.toLong32(mt_caller.substring(z + 1, z2));
292
+ }
285
293
  }
286
294
  }
287
295
  }
@@ -368,6 +376,7 @@ HttpObserver.prototype.__endTransaction = function(error, ctx, req, res) {
368
376
  wtx.cpuTime = ResourceProfile.getCPUTime() - ctx.start_cpu;
369
377
  wtx.malloc = ResourceProfile.getUsedHeapSize()-ctx.start_malloc;
370
378
  if(wtx.malloc < 0) { wtx.malloc = 0; }
379
+ wtx.originUrl = ctx.originUrl;
371
380
 
372
381
  wtx.seq = ctx.txid;
373
382
  wtx.sqlCount = ctx.sql_count;
@@ -393,6 +402,7 @@ HttpObserver.prototype.__endTransaction = function(error, ctx, req, res) {
393
402
  wtx.mtid=ctx.mtid;
394
403
  wtx.mdepth=ctx.mdepth;
395
404
  wtx.mcaller=ctx.mcaller_txid;
405
+ wtx.mcallerStepId = ctx.mcaller_stepId;
396
406
  wtx.mcaller_pcode = ctx.mcaller_pcode;
397
407
  wtx.mcaller_okind = ctx.mcaller_okind;
398
408
  wtx.mcaller_oid = ctx.mcaller_oid;
@@ -36,6 +36,7 @@ function TxRecord() {
36
36
 
37
37
  this.mtid = Long.ZERO;
38
38
  this.mdepth = 0;
39
+ this.mcaller = Long.ZERO;
39
40
  this.mcaller_txid = Long.ZERO;
40
41
 
41
42
  this.mcaller_pcode = 0;
@@ -56,11 +57,13 @@ function TxRecord() {
56
57
  this.oid=0;
57
58
  this.okind=0;
58
59
  this.onode=0;
59
- /*
60
- this.custid = null;
60
+
61
+ this.custid=null;
61
62
  this.dbcTime=0;
62
- this.apdex;
63
- */
63
+ this.apdex=0;
64
+
65
+ this.mcallerStepId = Long.ZERO;
66
+ this.originUrl = null;
64
67
  }
65
68
  TxRecord.prototype.getServiceType = function() {return 0;};
66
69
 
@@ -98,7 +101,7 @@ TxRecord.prototype.write = function(dout) {
98
101
  o.writeByte(1);
99
102
  o.writeDecimal(this.mtid);
100
103
  o.writeDecimal(this.mdepth);
101
- o.writeDecimal(this.mcaller_txid);
104
+ o.writeDecimal(this.mcaller);
102
105
  }else{
103
106
  o.writeByte(0);
104
107
  }
@@ -135,16 +138,13 @@ TxRecord.prototype.write = function(dout) {
135
138
  o.writeDecimal(this.okind);
136
139
  o.writeDecimal(this.onode);
137
140
 
138
- /*
139
- // 2019.04.04
140
141
  o.writeText(this.custid);
141
-
142
- // 2019.07.09
143
142
  o.writeDecimal(this.dbcTime);
144
-
145
- //2021.05.13
146
143
  o.writeByte(this.apdex);
147
- */
144
+
145
+ o.writeDecimal(this.mcallerStepId);
146
+ o.writeText(this.originUrl);
147
+
148
148
  ////////////// BLOB ///////////////
149
149
  dout.writeBlob(o.toByteArray());
150
150
  };
@@ -250,7 +250,7 @@ TxRecord.prototype.read = function(din) {
250
250
  this.okind = i.readDecNumber();
251
251
  this.onode = i.readDecNumber();
252
252
  }
253
- /*
253
+
254
254
  if (i.available() > 0) {
255
255
  this.custid = i.readText();
256
256
  }
@@ -260,7 +260,12 @@ TxRecord.prototype.read = function(din) {
260
260
  if (i.available() > 0) {
261
261
  this.apdex = i.readByte();
262
262
  }
263
- */
263
+
264
+ if(i.available()>0) {
265
+ this.mcallerStepId=i.readDecNumber();
266
+ this.originUrl=i.readText();
267
+ }
268
+
264
269
  return this;
265
270
  };
266
271
 
@@ -97,6 +97,8 @@ function TraceContext(id) {
97
97
 
98
98
  this.last_footprint_time=Date.now();
99
99
  this.last_footprint_desc="start transaction";
100
+
101
+ this.mcaller_stepId = Long.ZERO;
100
102
  }
101
103
 
102
104
  TraceContext.prototype.footprint=function(desc){
@@ -0,0 +1,293 @@
1
+ 20231101 10:36:06 [WHATAP-001] <61310> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
2
+ 20231101 10:36:06 [WHATAP-INIT] <61310> HttpObserver starting!
3
+ 20231101 10:36:06 [WHATAP-INIT] <61310> HttpObserver starting!
4
+ 20231101 10:36:06 [WHATAP-INIT] <61310> NetObserver starting!
5
+ 20231101 10:36:06 [WHTAP-loadObserves] <61310> unable to load mysql module
6
+ 20231101 10:36:06 [WHATAP-INIT] <61310> FileObserve starting!
7
+ 20231101 10:36:06 [WHATAP-203] <61310> Config file reloaded
8
+ 20231101 10:36:06 [WHATAP-101] <61310> Finish initialize configuration... false
9
+ 20231101 11:35:01 [WHATAP-110] <61310> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
10
+ 20231101 11:38:25 [WHATAP-170] <61310> [WhaTap Agent] now waiting for starting......
11
+ 20231101 11:41:17 [WHATAP-001] <67493> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
12
+ 20231101 11:41:17 [WHATAP-INIT] <67493> HttpObserver starting!
13
+ 20231101 11:41:17 [WHATAP-INIT] <67493> HttpObserver starting!
14
+ 20231101 11:41:17 [WHATAP-INIT] <67493> NetObserver starting!
15
+ 20231101 11:41:17 [WHTAP-loadObserves] <67493> unable to load mysql module
16
+ 20231101 11:41:17 [WHATAP-INIT] <67493> FileObserve starting!
17
+ 20231101 11:41:17 [WHATAP-203] <67493> Config file reloaded
18
+ 20231101 11:41:17 [WHATAP-101] <67493> Finish initialize configuration... false
19
+ 20231101 11:43:05 [WHATAP-110] <67493> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
20
+ 20231101 11:43:05 [WHATAP-170] <67493> [WhaTap Agent] now waiting for starting......
21
+ 20231101 11:43:10 [WHATAP-011] <67493> Connecton Retry....
22
+ 20231101 11:43:10 [WHATAP-180] <67493> Try to connect to {"host":"15.165.146.117","port":6600}
23
+ 20231101 11:43:10 [WHATAP-968] <67493> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
24
+ 20231101 11:46:20 [WHATAP-001] <68275> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
25
+ 20231101 11:46:20 [WHATAP-INIT] <68275> HttpObserver starting!
26
+ 20231101 11:46:20 [WHATAP-INIT] <68275> HttpObserver starting!
27
+ 20231101 11:46:20 [WHATAP-INIT] <68275> NetObserver starting!
28
+ 20231101 11:46:20 [WHTAP-loadObserves] <68275> unable to load mysql module
29
+ 20231101 11:46:20 [WHATAP-INIT] <68275> FileObserve starting!
30
+ 20231101 11:46:20 [WHATAP-203] <68275> Config file reloaded
31
+ 20231101 11:46:20 [WHATAP-101] <68275> Finish initialize configuration... false
32
+ 20231101 11:46:20 [WHATAP-110] <68275> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
33
+ 20231101 11:46:20 [WHATAP-170] <68275> [WhaTap Agent] now waiting for starting......
34
+ 20231101 11:46:25 [WHATAP-011] <68275> Connecton Retry....
35
+ 20231101 11:46:25 [WHATAP-180] <68275> Try to connect to {"host":"15.165.146.117","port":6600}
36
+ 20231101 11:46:25 [WHATAP-968] <68275> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
37
+ 20231101 11:46:25 [[cloudPlatformCheck]] <68275> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
38
+ 20231101 11:46:25 [[cloudPlatformCheck Error]] <68275> Error: connect EHOSTDOWN 169.254.169.254:80 - Local (10.160.136.162:49720)
39
+ 20231101 11:48:36 [WHATAP-001] <68508> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
40
+ 20231101 11:48:36 [WHATAP-INIT] <68508> HttpObserver starting!
41
+ 20231101 11:48:36 [WHATAP-INIT] <68508> HttpObserver starting!
42
+ 20231101 11:48:36 [WHATAP-INIT] <68508> NetObserver starting!
43
+ 20231101 11:48:36 [WHTAP-loadObserves] <68508> unable to load mysql module
44
+ 20231101 11:48:36 [WHATAP-INIT] <68508> FileObserve starting!
45
+ 20231101 11:48:36 [WHATAP-203] <68508> Config file reloaded
46
+ 20231101 11:48:36 [WHATAP-101] <68508> Finish initialize configuration... false
47
+ 20231101 11:48:36 [WHATAP-110] <68508> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
48
+ 20231101 11:48:36 [WHATAP-170] <68508> [WhaTap Agent] now waiting for starting......
49
+ 20231101 11:48:41 [WHATAP-011] <68508> Connecton Retry....
50
+ 20231101 11:48:41 [WHATAP-180] <68508> Try to connect to {"host":"15.165.146.117","port":6600}
51
+ 20231101 11:48:41 [WHATAP-968] <68508> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
52
+ 20231101 11:48:41 [[cloudPlatformCheck]] <68508> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
53
+ 20231101 11:49:04 [WHATAP-001] <68567> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
54
+ 20231101 11:49:04 [WHATAP-INIT] <68567> HttpObserver starting!
55
+ 20231101 11:49:04 [WHATAP-INIT] <68567> HttpObserver starting!
56
+ 20231101 11:49:04 [WHATAP-INIT] <68567> NetObserver starting!
57
+ 20231101 11:49:04 [WHTAP-loadObserves] <68567> unable to load mysql module
58
+ 20231101 11:49:04 [WHATAP-INIT] <68567> FileObserve starting!
59
+ 20231101 11:49:04 [WHATAP-203] <68567> Config file reloaded
60
+ 20231101 11:49:04 [WHATAP-101] <68567> Finish initialize configuration... false
61
+ 20231101 11:49:04 [WHATAP-110] <68567> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
62
+ 20231101 11:49:04 [WHATAP-170] <68567> [WhaTap Agent] now waiting for starting......
63
+ 20231101 11:49:09 [WHATAP-011] <68567> Connecton Retry....
64
+ 20231101 11:49:09 [WHATAP-180] <68567> Try to connect to {"host":"15.165.146.117","port":6600}
65
+ 20231101 11:49:09 [WHATAP-968] <68567> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
66
+ 20231101 11:49:09 [[cloudPlatformCheck]] <68567> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
67
+ 20231101 11:50:35 [WHATAP-001] <68726> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
68
+ 20231101 11:50:35 [WHATAP-INIT] <68726> HttpObserver starting!
69
+ 20231101 11:50:35 [WHATAP-INIT] <68726> HttpObserver starting!
70
+ 20231101 11:50:35 [WHATAP-INIT] <68726> NetObserver starting!
71
+ 20231101 11:50:35 [WHTAP-loadObserves] <68726> unable to load mysql module
72
+ 20231101 11:50:35 [WHATAP-INIT] <68726> FileObserve starting!
73
+ 20231101 11:50:35 [WHATAP-203] <68726> Config file reloaded
74
+ 20231101 11:50:35 [WHATAP-101] <68726> Finish initialize configuration... false
75
+ 20231101 11:50:35 [WHATAP-110] <68726> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
76
+ 20231101 11:50:35 [WHATAP-170] <68726> [WhaTap Agent] now waiting for starting......
77
+ 20231101 11:50:40 [WHATAP-011] <68726> Connecton Retry....
78
+ 20231101 11:50:40 [WHATAP-180] <68726> Try to connect to {"host":"15.165.146.117","port":6600}
79
+ 20231101 11:50:40 [WHATAP-968] <68726> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
80
+ 20231101 11:50:40 [[cloudPlatformCheck]] <68726> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
81
+ 20231101 11:53:52 [WHATAP-001] <69071> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
82
+ 20231101 11:53:52 [WHATAP-INIT] <69071> HttpObserver starting!
83
+ 20231101 11:53:52 [WHATAP-INIT] <69071> HttpObserver starting!
84
+ 20231101 11:53:52 [WHATAP-INIT] <69071> NetObserver starting!
85
+ 20231101 11:53:52 [WHTAP-loadObserves] <69071> unable to load mysql module
86
+ 20231101 11:53:52 [WHATAP-INIT] <69071> FileObserve starting!
87
+ 20231101 11:53:52 [WHATAP-203] <69071> Config file reloaded
88
+ 20231101 11:53:52 [WHATAP-101] <69071> Finish initialize configuration... false
89
+ 20231101 11:53:52 [WHATAP-110] <69071> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
90
+ 20231101 11:53:52 [WHATAP-170] <69071> [WhaTap Agent] now waiting for starting......
91
+ 20231101 11:53:57 [WHATAP-011] <69071> Connecton Retry....
92
+ 20231101 11:53:57 [WHATAP-180] <69071> Try to connect to {"host":"15.165.146.117","port":6600}
93
+ 20231101 11:53:57 [WHATAP-968] <69071> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
94
+ 20231101 11:53:57 [[cloudPlatformCheck]] <69071> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
95
+ 20231101 11:54:50 [WHATAP-001] <69192> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
96
+ 20231101 11:54:50 [WHATAP-INIT] <69192> HttpObserver starting!
97
+ 20231101 11:54:50 [WHATAP-INIT] <69192> HttpObserver starting!
98
+ 20231101 11:54:50 [WHATAP-INIT] <69192> NetObserver starting!
99
+ 20231101 11:54:50 [WHTAP-loadObserves] <69192> unable to load mysql module
100
+ 20231101 11:54:50 [WHATAP-INIT] <69192> FileObserve starting!
101
+ 20231101 11:54:50 [WHATAP-203] <69192> Config file reloaded
102
+ 20231101 11:54:50 [WHATAP-101] <69192> Finish initialize configuration... false
103
+ 20231101 11:54:50 [WHATAP-110] <69192> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
104
+ 20231101 11:54:50 [WHATAP-170] <69192> [WhaTap Agent] now waiting for starting......
105
+ 20231101 11:54:55 [WHATAP-011] <69192> Connecton Retry....
106
+ 20231101 11:54:55 [WHATAP-180] <69192> Try to connect to {"host":"15.165.146.117","port":6600}
107
+ 20231101 11:54:55 [WHATAP-968] <69192> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
108
+ 20231101 11:54:55 [[cloudPlatformCheck]] <69192> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
109
+ 20231101 11:56:56 [WHATAP-001] <69405> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
110
+ 20231101 11:56:56 [WHATAP-INIT] <69405> HttpObserver starting!
111
+ 20231101 11:56:56 [WHATAP-INIT] <69405> HttpObserver starting!
112
+ 20231101 11:56:56 [WHATAP-INIT] <69405> NetObserver starting!
113
+ 20231101 11:56:56 [WHTAP-loadObserves] <69405> unable to load mysql module
114
+ 20231101 11:56:56 [WHATAP-INIT] <69405> FileObserve starting!
115
+ 20231101 11:56:56 [WHATAP-203] <69405> Config file reloaded
116
+ 20231101 11:56:56 [WHATAP-101] <69405> Finish initialize configuration... false
117
+ 20231101 11:56:56 [WHATAP-110] <69405> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
118
+ 20231101 11:56:56 [WHATAP-170] <69405> [WhaTap Agent] now waiting for starting......
119
+ 20231101 11:57:01 [WHATAP-011] <69405> Connecton Retry....
120
+ 20231101 11:57:01 [WHATAP-180] <69405> Try to connect to {"host":"15.165.146.117","port":6600}
121
+ 20231101 11:57:01 [WHATAP-968] <69405> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
122
+ 20231101 11:57:01 [[cloudPlatformCheck]] <69405> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
123
+ 20231101 11:57:34 [WHATAP-001] <69482> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
124
+ 20231101 11:57:34 [WHATAP-INIT] <69482> HttpObserver starting!
125
+ 20231101 11:57:34 [WHATAP-INIT] <69482> HttpObserver starting!
126
+ 20231101 11:57:34 [WHATAP-INIT] <69482> NetObserver starting!
127
+ 20231101 11:57:34 [WHTAP-loadObserves] <69482> unable to load mysql module
128
+ 20231101 11:57:34 [WHATAP-INIT] <69482> FileObserve starting!
129
+ 20231101 11:57:34 [WHATAP-203] <69482> Config file reloaded
130
+ 20231101 11:57:34 [WHATAP-101] <69482> Finish initialize configuration... false
131
+ 20231101 11:57:34 [WHATAP-110] <69482> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
132
+ 20231101 11:57:34 [WHATAP-170] <69482> [WhaTap Agent] now waiting for starting......
133
+ 20231101 11:57:39 [WHATAP-011] <69482> Connecton Retry....
134
+ 20231101 11:57:39 [WHATAP-180] <69482> Try to connect to {"host":"15.165.146.117","port":6600}
135
+ 20231101 11:57:39 [WHATAP-968] <69482> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
136
+ 20231101 11:57:39 [[cloudPlatformCheck]] <69482> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
137
+ 20231101 11:59:44 [WHATAP-001] <69716> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
138
+ 20231101 11:59:44 [WHATAP-INIT] <69716> HttpObserver starting!
139
+ 20231101 11:59:44 [WHATAP-INIT] <69716> HttpObserver starting!
140
+ 20231101 11:59:44 [WHATAP-INIT] <69716> NetObserver starting!
141
+ 20231101 11:59:44 [WHTAP-loadObserves] <69716> unable to load mysql module
142
+ 20231101 11:59:44 [WHATAP-INIT] <69716> FileObserve starting!
143
+ 20231101 11:59:44 [WHATAP-203] <69716> Config file reloaded
144
+ 20231101 11:59:44 [WHATAP-101] <69716> Finish initialize configuration... false
145
+ 20231101 11:59:44 [WHATAP-110] <69716> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
146
+ 20231101 11:59:44 [WHATAP-170] <69716> [WhaTap Agent] now waiting for starting......
147
+ 20231101 11:59:49 [WHATAP-011] <69716> Connecton Retry....
148
+ 20231101 11:59:49 [WHATAP-180] <69716> Try to connect to {"host":"15.165.146.117","port":6600}
149
+ 20231101 11:59:49 [WHATAP-968] <69716> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
150
+ 20231101 11:59:49 [[cloudPlatformCheck]] <69716> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
151
+ 20231101 12:04:06 [[cloudPlatformCheck Error]] <69716> Error: connect ETIMEDOUT 169.254.169.254:80
152
+ 20231101 12:04:06 [WHATAP-183] <69716> Disconnected from server, please check your network or Whatap Server!!!!!
153
+ Error: Socket end Event!!!!!
154
+ at Timeout.<anonymous> (/Users/seunghunlee/workspace/nodejs_agent/lib/net/tcp-session.js:145:16)
155
+ at Timeout.wrapper [as _onTimeout] (/Users/seunghunlee/workspace/nodejs_agent/lib/core/interceptor.js:129:27)
156
+ at listOnTimeout (node:internal/timers:559:17)
157
+ at processTimers (node:internal/timers:502:7)
158
+ 20231101 12:04:07 [WHATAP-170] <69716> [WhaTap Agent] now waiting for starting......
159
+ 20231101 12:04:12 [WHATAP-011] <69716> Connecton Retry....
160
+ 20231101 12:04:12 [WHATAP-180] <69716> Try to connect to {"host":"15.165.146.117","port":6600}
161
+ 20231101 12:04:12 [[cloudPlatformCheck]] <69716> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
162
+ 20231101 12:24:14 [WHATAP-001] <72155> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
163
+ 20231101 12:24:14 [WHATAP-INIT] <72155> HttpObserver starting!
164
+ 20231101 12:24:14 [WHATAP-INIT] <72155> HttpObserver starting!
165
+ 20231101 12:24:14 [WHATAP-INIT] <72155> NetObserver starting!
166
+ 20231101 12:24:14 [WHTAP-loadObserves] <72155> unable to load mysql module
167
+ 20231101 12:24:14 [WHATAP-INIT] <72155> FileObserve starting!
168
+ 20231101 12:24:14 [WHATAP-203] <72155> Config file reloaded
169
+ 20231101 12:24:14 [WHATAP-101] <72155> Finish initialize configuration... false
170
+ 20231101 12:24:14 [WHATAP-110] <72155> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
171
+ 20231101 12:24:14 [WHATAP-170] <72155> [WhaTap Agent] now waiting for starting......
172
+ 20231101 12:24:19 [WHATAP-011] <72155> Connecton Retry....
173
+ 20231101 12:24:19 [WHATAP-180] <72155> Try to connect to {"host":"15.165.146.117","port":6600}
174
+ 20231101 12:24:19 [WHATAP-968] <72155> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
175
+ 20231101 12:24:20 [[cloudPlatformCheck]] <72155> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
176
+ 20231101 13:39:21 [WHATAP-001] <74692> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
177
+ 20231101 13:39:21 [WHATAP-INIT] <74692> HttpObserver starting!
178
+ 20231101 13:39:21 [WHATAP-INIT] <74692> HttpObserver starting!
179
+ 20231101 13:39:21 [WHATAP-INIT] <74692> NetObserver starting!
180
+ 20231101 13:39:21 [WHTAP-loadObserves] <74692> unable to load mysql module
181
+ 20231101 13:39:21 [WHATAP-INIT] <74692> FileObserve starting!
182
+ 20231101 13:39:21 [WHATAP-203] <74692> Config file reloaded
183
+ 20231101 13:39:21 [WHATAP-101] <74692> Finish initialize configuration... false
184
+ 20231101 13:39:21 [WHATAP-110] <74692> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
185
+ 20231101 13:39:21 [WHATAP-170] <74692> [WhaTap Agent] now waiting for starting......
186
+ 20231101 13:39:26 [WHATAP-011] <74692> Connecton Retry....
187
+ 20231101 13:39:26 [WHATAP-180] <74692> Try to connect to {"host":"15.165.146.117","port":6600}
188
+ 20231101 13:39:26 [WHATAP-968] <74692> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
189
+ 20231101 13:39:26 [[cloudPlatformCheck]] <74692> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
190
+ 20231101 13:43:31 [[cloudPlatformCheck Error]] <74692> Error: connect ETIMEDOUT 169.254.169.254:80
191
+ 20231101 13:43:31 [WHATAP-183] <74692> Disconnected from server, please check your network or Whatap Server!!!!!
192
+ Error: Socket end Event!!!!!
193
+ at Timeout.<anonymous> (/Users/seunghunlee/workspace/nodejs_agent/lib/net/tcp-session.js:145:16)
194
+ at Timeout.wrapper [as _onTimeout] (/Users/seunghunlee/workspace/nodejs_agent/lib/core/interceptor.js:129:27)
195
+ at listOnTimeout (node:internal/timers:559:17)
196
+ at processTimers (node:internal/timers:502:7)
197
+ 20231101 13:43:32 [WHATAP-170] <74692> [WhaTap Agent] now waiting for starting......
198
+ 20231101 13:43:37 [WHATAP-011] <74692> Connecton Retry....
199
+ 20231101 13:43:37 [WHATAP-180] <74692> Try to connect to {"host":"15.165.146.117","port":6600}
200
+ 20231101 13:43:37 [[cloudPlatformCheck]] <74692> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
201
+ 20231101 14:25:47 [WHATAP-001] <79402> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
202
+ 20231101 14:25:47 [WHATAP-INIT] <79402> HttpObserver starting!
203
+ 20231101 14:25:47 [WHATAP-INIT] <79402> HttpObserver starting!
204
+ 20231101 14:25:47 [WHATAP-INIT] <79402> NetObserver starting!
205
+ 20231101 14:25:47 [WHTAP-loadObserves] <79402> unable to load mysql module
206
+ 20231101 14:25:47 [WHATAP-INIT] <79402> FileObserve starting!
207
+ 20231101 14:25:47 [WHATAP-203] <79402> Config file reloaded
208
+ 20231101 14:25:47 [WHATAP-101] <79402> Finish initialize configuration... false
209
+ 20231101 14:25:47 [WHATAP-110] <79402> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
210
+ 20231101 14:25:47 [WHATAP-170] <79402> [WhaTap Agent] now waiting for starting......
211
+ 20231101 14:25:52 [WHATAP-011] <79402> Connecton Retry....
212
+ 20231101 14:25:52 [WHATAP-180] <79402> Try to connect to {"host":"15.165.146.117","port":6600}
213
+ 20231101 14:25:52 [WHATAP-968] <79402> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
214
+ 20231101 14:25:52 [[cloudPlatformCheck]] <79402> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
215
+ 20231101 14:26:16 [WHATAP-001] <79467> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
216
+ 20231101 14:26:16 [WHATAP-INIT] <79467> HttpObserver starting!
217
+ 20231101 14:26:16 [WHATAP-INIT] <79467> HttpObserver starting!
218
+ 20231101 14:26:16 [WHATAP-INIT] <79467> NetObserver starting!
219
+ 20231101 14:26:16 [WHTAP-loadObserves] <79467> unable to load mysql module
220
+ 20231101 14:26:16 [WHATAP-INIT] <79467> FileObserve starting!
221
+ 20231101 14:26:16 [WHATAP-203] <79467> Config file reloaded
222
+ 20231101 14:26:16 [WHATAP-101] <79467> Finish initialize configuration... false
223
+ 20231101 14:26:16 [WHATAP-110] <79467> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
224
+ 20231101 14:26:16 [WHATAP-170] <79467> [WhaTap Agent] now waiting for starting......
225
+ 20231101 14:26:21 [WHATAP-011] <79467> Connecton Retry....
226
+ 20231101 14:26:21 [WHATAP-180] <79467> Try to connect to {"host":"15.165.146.117","port":6600}
227
+ 20231101 14:26:21 [WHATAP-968] <79467> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
228
+ 20231101 14:26:21 [[cloudPlatformCheck]] <79467> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
229
+ 20231101 14:28:36 [WHATAP-001] <79710> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
230
+ 20231101 14:28:36 [WHATAP-INIT] <79710> HttpObserver starting!
231
+ 20231101 14:28:36 [WHATAP-INIT] <79710> HttpObserver starting!
232
+ 20231101 14:28:36 [WHATAP-INIT] <79710> NetObserver starting!
233
+ 20231101 14:28:36 [WHTAP-loadObserves] <79710> unable to load mysql module
234
+ 20231101 14:28:36 [WHATAP-INIT] <79710> FileObserve starting!
235
+ 20231101 14:28:36 [WHATAP-203] <79710> Config file reloaded
236
+ 20231101 14:28:36 [WHATAP-101] <79710> Finish initialize configuration... false
237
+ 20231101 14:28:36 [WHATAP-110] <79710> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
238
+ 20231101 14:28:36 [WHATAP-170] <79710> [WhaTap Agent] now waiting for starting......
239
+ 20231101 14:28:55 [WHATAP-001] <79758> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
240
+ 20231101 14:28:55 [WHATAP-INIT] <79758> HttpObserver starting!
241
+ 20231101 14:28:55 [WHATAP-INIT] <79758> HttpObserver starting!
242
+ 20231101 14:28:55 [WHATAP-INIT] <79758> NetObserver starting!
243
+ 20231101 14:28:55 [WHTAP-loadObserves] <79758> unable to load mysql module
244
+ 20231101 14:28:55 [WHATAP-INIT] <79758> FileObserve starting!
245
+ 20231101 14:28:55 [WHATAP-203] <79758> Config file reloaded
246
+ 20231101 14:28:55 [WHATAP-101] <79758> Finish initialize configuration... false
247
+ 20231101 14:28:55 [WHATAP-110] <79758> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
248
+ 20231101 14:28:55 [WHATAP-170] <79758> [WhaTap Agent] now waiting for starting......
249
+ 20231101 14:29:00 [WHATAP-011] <79758> Connecton Retry....
250
+ 20231101 14:29:00 [WHATAP-180] <79758> Try to connect to {"host":"15.165.146.117","port":6600}
251
+ 20231101 14:29:00 [WHATAP-968] <79758> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
252
+ 20231101 14:49:50 [WHATAP-001] <81833> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
253
+ 20231101 14:49:50 [WHATAP-INIT] <81833> HttpObserver starting!
254
+ 20231101 14:49:50 [WHATAP-INIT] <81833> HttpObserver starting!
255
+ 20231101 14:49:50 [WHATAP-INIT] <81833> NetObserver starting!
256
+ 20231101 14:49:50 [WHTAP-loadObserves] <81833> unable to load mysql module
257
+ 20231101 14:49:50 [WHATAP-INIT] <81833> FileObserve starting!
258
+ 20231101 14:49:50 [WHATAP-203] <81833> Config file reloaded
259
+ 20231101 14:49:50 [WHATAP-101] <81833> Finish initialize configuration... false
260
+ 20231101 14:49:50 [WHATAP-110] <81833> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
261
+ 20231101 14:49:50 [WHATAP-170] <81833> [WhaTap Agent] now waiting for starting......
262
+ 20231101 14:49:55 [WHATAP-011] <81833> Connecton Retry....
263
+ 20231101 14:49:55 [WHATAP-180] <81833> Try to connect to {"host":"15.165.146.117","port":6600}
264
+ 20231101 14:49:55 [WHATAP-968] <81833> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
265
+ 20231101 18:40:12 [WHATAP-001] <7541> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
266
+ 20231101 18:40:12 [WHATAP-INIT] <7541> HttpObserver starting!
267
+ 20231101 18:40:12 [WHATAP-INIT] <7541> HttpObserver starting!
268
+ 20231101 18:40:12 [WHATAP-INIT] <7541> NetObserver starting!
269
+ 20231101 18:40:12 [WHTAP-loadObserves] <7541> unable to load mysql module
270
+ 20231101 18:40:12 [WHATAP-INIT] <7541> FileObserve starting!
271
+ 20231101 18:40:12 [WHATAP-203] <7541> Config file reloaded
272
+ 20231101 18:40:12 [WHATAP-101] <7541> Finish initialize configuration... false
273
+ 20231101 18:40:12 [WHATAP-110] <7541> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
274
+ 20231101 18:40:12 [WHATAP-170] <7541> [WhaTap Agent] now waiting for starting......
275
+ 20231101 18:40:17 [WHATAP-011] <7541> Connecton Retry....
276
+ 20231101 18:40:17 [WHATAP-180] <7541> Try to connect to {"host":"15.165.146.117","port":6600}
277
+ 20231101 18:40:17 [WHATAP-968] <7541> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
278
+ 20231101 18:40:17 [[cloudPlatformCheck]] <7541> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
279
+ 20231101 18:41:32 [[cloudPlatformCheck Error]] <7541> Error: connect ETIMEDOUT 169.254.169.254:80
280
+ 20231101 18:51:09 [WHATAP-001] <9382> Start initialize WhaTap Agent... Root[/Users/seunghunlee/workspace/nodejs_agent]
281
+ 20231101 18:51:09 [WHATAP-INIT] <9382> HttpObserver starting!
282
+ 20231101 18:51:09 [WHATAP-INIT] <9382> HttpObserver starting!
283
+ 20231101 18:51:09 [WHATAP-INIT] <9382> NetObserver starting!
284
+ 20231101 18:51:09 [WHTAP-loadObserves] <9382> unable to load mysql module
285
+ 20231101 18:51:09 [WHATAP-INIT] <9382> FileObserve starting!
286
+ 20231101 18:51:09 [WHATAP-203] <9382> Config file reloaded
287
+ 20231101 18:51:09 [WHATAP-101] <9382> Finish initialize configuration... false
288
+ 20231101 18:51:09 [WHATAP-110] <9382> [pcode=2095,SECURE_KEY=344738f1db7b8695f6928e0580d96d09]
289
+ 20231101 18:51:09 [WHATAP-170] <9382> [WhaTap Agent] now waiting for starting......
290
+ 20231101 18:51:14 [WHATAP-011] <9382> Connecton Retry....
291
+ 20231101 18:51:14 [WHATAP-180] <9382> Try to connect to {"host":"15.165.146.117","port":6600}
292
+ 20231101 18:51:14 [WHATAP-968] <9382> OID: -1593603462 ONAME: NODE-0-202 IP: 10.8.0.202
293
+ 20231101 18:51:14 [[cloudPlatformCheck]] <9382> cloud_platform: kic , cloud_platform_chk: kr-central-1 , cloud_platform_httpc: http://169.254.169.254/latest/meta-data/placement/availability-zone
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "whatap",
3
3
  "homepage": "http://www.whatap.io",
4
- "version": "0.4.80",
5
- "releaseDate": "20231031",
4
+ "version": "0.4.81",
5
+ "releaseDate": "20231108",
6
6
  "description": "Monitoring and Profiling Service",
7
7
  "main": "index.js",
8
8
  "scripts": {},