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年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン