如何在没有环境变量的情况下启用NODE_DEBUG?

时间:2016-08-15 20:58:20

标签: node.js aws-lambda node-debugger

我正在尝试在AWS Lambda环境(Node.js 4.3)中运行时调试node.js https库环境中似乎是套接字错误的内容。此问题仅在间歇性地发生且仅在重负载下发生。我的团队已经能够通过负载测试一致地重现该问题,并且我们希望从https模块启用调试日志记录。

我在节点文档中发现,我可以通过设置NODE_DEBUG=https环境变量来启用调试日志记录。但是,我不相信我可以设置环境变量:How can I use environmental variables on AWS Lambda?。另外,我没有能力更改Lambda用来调用我的功能的命令行。

是否有另一种方法可以创建与设置NODE_DEBUG相同的调试日志记录?

3 个答案:

答案 0 :(得分:3)

这是一个monkeypatch:

IF(category = 'AAA' AND Label = 'n', 1, 0)  

它基本上启用const util = require('util'); let debuglog = util.debuglog; util.debuglog = set => { if (set === 'https') { let pid = process.pid; return function() { let msg = util.format.apply(util, arguments); console.error('%s %d: %s', set, pid, msg); } } return debuglog(set); } // This has to occur _after_ the code above: const https = require('https'); 的调试日志记录,而不管https。轻松重写以适用于任何模块,使用Node v4和v6进行测试。

答案 1 :(得分:1)

child_process.fork()允许一个模块使用指定的环境变量生成新的节点环境。这两个进程可以通过send()向对方发送消息,并通过“消息”事件接收这些消息。

例如,如果您当前的主模块名为server.js,那么您可以在同一目录中添加一个临时的start.js模块(它将是新的lambda函数),如下所示:

// Add NODE_DEBUG to this process's environment variables, which are passed by default to
// the forked node environment.
process.env.NODE_DEBUG = 'https';

const cp = require('child_process');
const n = cp.fork('server.js');

// Cached callback functions, in case client can pass in different callbacks.
// Use an object instead of array, to avoid memory leaks. 
const cbs = {};
var cbIndexCounter = 0; // To make callback indices unique

// Call appropriate callback with response from child process, and delete cached callback.
n.on('message', (m) => {
  cbs[m.cbIndex](m.error, m.result);
  delete cbs[m.cbIndex];
});

n.on('error', (err) => {
  console.log('Child node env error: ', err);
});

// Cache the callback; forward event, context, index to child process; and increment index.
exports.myHandler = function(event, context, callback) {
  cbs[cbIndexCounter] = callback;
  n.send({
    event: event,
    context: context,
    cbIndex: cbIndexCounter++
  });
}

可以通过添加“message”事件监听器来轻微修改server.js模块:

process.on('message', (m) => {
  exports.myHandler(m.event, m.context, function(error, result) {
    process.send({
      error: error,
      result: result,
      cbIndex: m.cbIndex
    });
  });
});

// The rest of your original code ...
exports.myHandler = function (event, context, callback) {
   // Whatever you need here...
}

答案 2 :(得分:0)

运行以下内容:

node app.js --https-debug

并且你的app.js里面有这个在脚本的开头

  process.argv.forEach((val, index) => {
    if(val.match(/--https-debug/)) {
      process.env.NODE_DEBUG = "https";
    }
  });

process.env就像任何对象一样是一个对象,但是节点在其上设置环境变量,你总是 hack 它并覆盖从节点全局环境设置的任何变量。

我们使用process.argv捕获发送到终端中节点js文件的所有参数。