Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

rupyy-cloudwatch-logger

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rupyy-cloudwatch-logger

rupyy cloudwatch logger

Source
npmnpm
Version
1.0.17
Version published
Weekly downloads
84
394.12%
Maintainers
1
Weekly downloads
 
Created
Source

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.

FAQs

Package last updated on 01 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts