Rupyy CloudWatch Logger
Rupyy CloudWatch Logger is a simple npm package to log data to AWS CloudWatch Logs using aws-sdk.
Installation
Install the package using npm:
npm install rupyy-cloudwatch-logger
Prerequisites
Before using CloudWatch Logger, ensure that you have the following:
1. An AWS account with appropriate IAM credentials.
2. Node.js version 12 or higher.
Usage
Before using the addLogsToCloudWatch function, you need to set up the AWS credentials and log configuration. Here's an example of how to use the package:
const cloudwatchLogger = require('rupyy-cloudwatch-logger');
const config = {
logGroupName: 'YourLogGroupName',
logStreamName: 'YourLogStreamName',
awsRegion: 'YourAWSRegion',
awsAccessKeyId:'YourAWSAccessKeyId',
awsSecretKey:'YourAWSSecretKey'
};
const logData = {
level: 'info / error',
req_id: '12345',
purpose: 'Some purpose for this log',
context: 'Some context for this log',
logData: {
},
};
try {
cloudwatchLogger(config, logData);
} catch (error) {
console.error('Error:', error.message);
}
Note
Make sure to replace the placeholders 'YourLogGroupName', 'YourLogStreamName','YourAWSSecretKey ,'awsAccessKeyId' and 'YourAWSRegion' with your actual AWS CloudWatch configuration.