1.0.18 • Published 2 years ago

rupyy-cloudwatch-logger v1.0.18

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

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.

1.0.18

2 years ago

1.0.17

2 years ago

1.0.16

2 years ago

1.0.15

2 years ago

1.0.14

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago