Skip to content

Simple code example for the logging of lambda requests

License

Notifications You must be signed in to change notification settings

FireTail-io/firetail-js-lambda

Firetail Javascript Lambda Middleware

Overview

The purpose of this module is to correctly log out the AWS Lambda event and response payload to allow the firetail extension to then send it on to the firetail logging api

Code Coverage codecov License

The npm version is a function that wraps around an event handler function in a AWS Lambda to extract the event and response payloads into a base64 logging message.

Installation

Install the module into your project

Implementing Middleware in lambda function

import * as firetailWrapper from '@public.firetail.io/firetail-js-lambda'

module.exports.myFn = firetailWrapper((event,context) => {
  // do work here..
  return {
    statusCode:200,
    body: JSON.stringify(data)
  };
});

About

Simple code example for the logging of lambda requests

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published