rupyy-cloudwatch-logger
v1.0.18
Published
rupyy cloudwatch logger
Downloads
154
Readme
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');
// Set up your AWS CloudWatch configuration
const config = {
logGroupName: 'YourLogGroupName',
logStreamName: 'YourLogStreamName',
awsRegion: 'YourAWSRegion',
awsAccessKeyId:'YourAWSAccessKeyId',
awsSecretKey:'YourAWSSecretKey'
};
// Your log data
const logData = {
level: 'info / error',
req_id: '12345', // Unique Id
purpose: 'Some purpose for this log',
context: 'Some context for this log',
logData: {
// Additional log data if needed
},
};
// Call the addLogs function to log the data to AWS CloudWatch
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.