npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ipsense-logger

v1.0.26

Published

Lambda logger for a custom CloudWatch log group based on dashbot-logger.

Downloads

60

Readme

ipsense-logger

ipsense-logger is heavily based on dashbot-logger which allows you to log to a specific log group in CloudWatch Logs apart from the default log group that Lambda functions set up. The logger works around the 5 putLogEvent/s limit by batching up log events and using a pool of log streams to put log events to.

This version adds a couple of new methods to bufferize, and flush logs allowing you to keep information together in the logstream.

Setup

This package uses the aws-sdk, and will require an AWS account.

npm install --save ipsense-logger

Pass in your AWS credentials and a region as follows, or configure using one of the options listed here

  • region - string aws region
  • accessKeyId - string access key
  • secretAccessKey - string secret key
  • logGroupName - (required) string user specified log group name
const configuration = {
  region: <REGION>,
  accessKeyId: <ACCESS-KEY>,
  secretAccessKey: <SECRET-KEY>,
  logGroupName: <LOG-GROUP-NAME>,
}

const Logger = require('ipsense-logger')
const logger = new Logger(configuration)

You can also pass in additional configuration options to specify the behavior of the resource pool for log streams and naming of log streams.

Configuration Options

Available options:

  • debug - (default: false, boolean) logs helpful debugging information
  • logStreamPrefix - (default: dashbot, string) user specified log stream prefix
  • maxStreams - (default: 10, number) max number of log streams to use concurrently
  • minStreams - (default: 1, number) min number of log streams to use concurrently

Optionally, you can use the following environment variables to set certain options:

  • for logGroupName set DASHBOT_LOG_GROUP_NAME
  • for logStreamPrefix set DASBOT_LOG_STREAM_PREFIX
  • for maxStreams set DASHBOT_LOG_MAX_STREAMS
  • for minStreams set DASHBOT_LOG_MIN_STREAMS

Example

const configuration = {
  'logGroupName': 'test-group',
  'logStreamPrefix': 'test-stream',
  'maxStreams': 5,
  'minStreams': 2,
  'debug': true,
  'printErrors': true,
}

const Logger = require('ipsense-logger')
const logger = new Logger(configuration)

logger.buffer('test1') // add string test1 to log buffer
logger.buffer('test2') // add string test2 to log buffer
logger.buffer('test3') // add string test3 to log buffer
logger.buffer('test4') // add string test4 to log buffer
...
logger.flush() //logs buffer's content to log-group 'test-group', and clear the buffer