1.0.0 • Published 4 months ago

rupyy-cloudwatch-loggger v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
4 months ago

Rupyy CloudWatch Loggger

Rupyy CloudWatch Loggger 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-loggger   

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-loggger');

// 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.

1.0.0

4 months ago