micronodelib 1.0.2 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -26,7 +26,7 @@ import {Logger, httpContextMiddleware, requestLogMiddleware} from "micronodelib"
26
26
  const app: Application = express();
27
27
 
28
28
  # Enable request context
29
- app.use(httpContextMiddleware);
29
+ app.use(httpContextMiddleware());
30
30
 
31
31
  # Enable http request log
32
32
  app.use(requestLogMiddleware({
@@ -1,2 +1,2 @@
1
1
  import { NextFunction, Request, Response } from "express";
2
- export declare const httpContextMiddleware: ((req: Request, res: Response, next: NextFunction) => void)[];
2
+ export declare const httpContextMiddleware: () => ((req: Request, res: Response, next: NextFunction) => void)[];
@@ -12,7 +12,10 @@ const requestIdMiddleware = (req, res, next) => {
12
12
  (0, express_http_context_1.set)("reqId", requestId);
13
13
  next();
14
14
  };
15
- exports.httpContextMiddleware = [
16
- express_http_context_1.middleware,
17
- requestIdMiddleware,
18
- ];
15
+ const httpContextMiddleware = function () {
16
+ return [
17
+ express_http_context_1.middleware,
18
+ requestIdMiddleware,
19
+ ];
20
+ };
21
+ exports.httpContextMiddleware = httpContextMiddleware;
@@ -35,16 +35,18 @@ const util = __importStar(require("util"));
35
35
  // and used to log messages.
36
36
  const winstonLogger = winston_1.default.createLogger({
37
37
  format: (0, configuration_1.formatter)(info => {
38
- return {
39
- level: info.level.toUpperCase(),
40
- msg: info.message,
41
- message: null,
42
- ts: Date.parse(info.timestamp) / 1000,
43
- request_meta: {
44
- request_id: (0, express_http_context_1.get)('reqId'),
45
- },
46
- stacktrace: info.stack
38
+ info.level = info.level.toUpperCase();
39
+ info.msg = info.message;
40
+ info.ts = Date.parse(info.timestamp) / 1000;
41
+ info.request_meta = {
42
+ request_id: (0, express_http_context_1.get)('reqId')
47
43
  };
44
+ info.stacktrace = info.stack;
45
+ // @ts-ignore
46
+ delete info.message;
47
+ delete info.timestamp;
48
+ delete info.stack;
49
+ return info;
48
50
  }),
49
51
  transports: configuration_1.transports,
50
52
  });
@@ -13,25 +13,28 @@ const requestLogMiddleware = function (opt) {
13
13
  msg: 'finish router',
14
14
  format: (0, configuration_1.formatter)(info => {
15
15
  const req = info.meta.req;
16
- return {
17
- level: info.level.toUpperCase(),
18
- msg: info.message,
19
- message: null,
20
- ts: Date.parse(info.timestamp) / 1000,
21
- request_meta: {
22
- status: info.meta.res.statusCode,
23
- execution_time: info.meta.responseTime,
24
- request_pattern: url_1.default.parse(req.url).pathname,
25
- request_path: url_1.default.parse(req.url).pathname,
26
- request_method: req.method,
27
- query: new URLSearchParams(req.query).toString(),
28
- url: req.url,
29
- device_id: req.headers['device-id'],
30
- request_id: req.headers['x-request-id'],
31
- client_ip: req.headers['x-forwarded-for'] || (req.connection ? req.connection.remoteAddress : null),
32
- user_agent: req.headers['user-agent']
33
- }
16
+ info.level = info.level.toUpperCase();
17
+ info.msg = info.message;
18
+ info.ts = Date.parse(info.timestamp) / 1000;
19
+ info.request_meta = {
20
+ status: info.meta.res.statusCode,
21
+ execution_time: info.meta.responseTime,
22
+ request_pattern: url_1.default.parse(req.url).pathname,
23
+ request_path: url_1.default.parse(req.url).pathname,
24
+ request_method: req.method,
25
+ query: new URLSearchParams(req.query).toString(),
26
+ url: req.url,
27
+ device_id: req.headers['device-id'],
28
+ device_session_id: req.headers['device-session-id'],
29
+ request_id: req.headers['x-request-id'],
30
+ client_ip: req.headers['x-forwarded-for'] || (req.connection ? req.connection.remoteAddress : null),
31
+ user_agent: req.headers['user-agent']
34
32
  };
33
+ // @ts-ignore
34
+ delete info.message;
35
+ delete info.timestamp;
36
+ delete info.meta;
37
+ return info;
35
38
  }),
36
39
  transports: configuration_1.transports,
37
40
  ignoreRoute: function (req, res) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "micronodelib",
3
- "version": "1.0.2",
3
+ "version": "1.0.5",
4
4
  "description": "Common core for NodeJs project",
5
5
  "author": "Thang Bui",
6
6
  "license": "MIT",