Separating xray logs from nodejs application logs in cloudwatch

0

Hi, I have enabled xray in our nodejs application. but we are receiving exponentials logs from xray service in our logs in cloudwatch, which is making us difficult to check logs for custom functionality. Is there any way to specify a separate log group for xray?

已提問 1 年前檢視次數 337 次
1 個回答
1
已接受的答案

Hello,

I understand that you would like to know if you can configure a separate log group for X-ray SDK for Node.js.

You can configure the X-Ray SDK for Node.js with plugins to include information about the service that your application runs on, modify the default sampling behavior, or add sampling rules that apply to requests to specific paths.

If you wish to provide a different format or destination for the logs then you can provide the SDK with your own implementation of the logger interface as shown below. Any object that implements this interface can be used. This means that many logging libraries, e.g. Winston, could be used and passed to the SDK directly. Below is an example:

Example app.js - logging:

-----------------------------
var AWSXRay = require('aws-xray-sdk');

// Create your own logger, or instantiate one using a library.
var logger = {
  error: (message, meta) => { /* logging code */ },
  warn: (message, meta) => { /* logging code */ },
  info: (message, meta) => { /* logging code */ },
  debug: (message, meta) => { /* logging code */ }
}

AWSXRay.setLogger(logger);
AWSXRay.config([AWSXRay.plugins.EC2Plugin]);

-----------------------------

Call setLogger before you run other configuration methods to ensure that you capture output from those operations.

Hope this answers your query!

Regards

References: [+]https://docs.aws.amazon.com/xray/latest/devguide/xray-sdk-nodejs-configuration.html#xray-sdk-nodejs-configuration-envvars

[+]https://docs.aws.amazon.com/xray-sdk-for-nodejs/latest/reference/

AWS
已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南