Git Product home page Git Product logo

cloudwatch-logger's Introduction

โ˜๏ธ ๐Ÿ‘€ cloudwatch-logger

This AWS CloudWatch logger library is designed to support the use case where apps don't necessarily run continuously, therefore needing to exit after all work has been completed. It is meant to be a thin wrapper around the AWS SDK's CloudWatchLogs class with an API similar to console.log, but asynchronous by leveraging Promises.

npm install cloudwatch-logger --save

Usage

With ES2017's async-await syntax, using cloudwatch-logger is as simple as:

const CloudWatchLogger = require('cloudwatch-logger');

// this Logger assumes an existing logGroup,
// but creates a new logStream
const config = {
  accessKeyId: '<AWS accessKeyId>',
  secretAccessKey: '<AWS secret>',
  region: '<AWS region>',
  logGroupName: '<myLogGroup>',
  logStreamName: '<myLogStream>',
  // optional (for temporary credentials)
  sessionToken: '<mySessionToken>',
};

const logger = new CloudWatchLogger(config);

// let's make an async IIF so we can `await`
(async () => {
  // the connect() method returns the logger instance itself
  // and creates a new logStream
  await logger.connect();

  /* logResult is the response object returned by CloudWatchLogs API `putLogEvents` method, see:
   * http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/CloudWatchLogs.html#putLogEvents-property
   *
   * the messages are bundled into a single `putLogEvents` call with timestamps set to current UNIX time
   */
  const logResult = await logger.log('Message1', { objects: 'are serialised to JSON' }, 123);

  // we can access the underlying AWS SDK CloudWatchLogs object if we want to do fancy things
  const CloudWatchLogs = logger.getAWSObject();
  // โ€ฆ fancy things โ€ฆ
})();

Requirements

  • An AWS account with CloudWatch Logs write permissions
  • Node.js 7.6+ for async-await support

Notes

  • this library was designed for a rather specific use case and currently does not handle cases like non-existent log groups. Contributions to increase robustness are more than welcome!

cloudwatch-logger's People

Contributors

jakubfiala avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.