我对我的项目有以下疑问。 -我们能否在最少的更改下在AWS上使用没有node.js文件/功能的AWS-SDK? -现在的文档水平很高。我不知道必须在哪里进行代码更改。 -我需要对* .js文件中的每个函数进行更改,还是对每个* .js文件进行一个代码更改,或者对所有* .js文件进行一个代码更改。
我在节点js文件中使用AWS-SDK遇到麻烦。 我在控制台上看到以下错误
/TestProject-Lambda/node_modules/hapi/lib/protect.js:80:17)',
'at Server.<anonymous> (/TestProject/node_modules/hapi/lib/connection.js:259:30)',
'at emitTwo (events.js:126:13)',
'at Server.emit (events.js:214:7)',
'at parserOnIncoming (_http_server.js:634:12)' ]
Serverless: Replying error in handler
I added below code in one of the *.js file which is entry point for my application
var AWSXRay = require('aws-xray-sdk');
AWSXRay.middleware.setSamplingRules('xray-rule.json');
var logger = require('winston');
AWSXRay.setLogger(logger);
Below is xray-rule.json
{
"version": 1,
"rules": [
{
"description": "Industry Network Record API calls",
"host": "*",
"http_method": "*",
"url_path": "/*",
"fixed_target": 0,
"rate": 0.05
}
],
"default": {
"fixed_target": 1,
"rate": 0.1
}
}
"rate": 0.1
}
}