Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lambda-cloud-watch-log-parser

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lambda-cloud-watch-log-parser

Parses event data from cloud watch logs.

  • 0.0.10
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

Lambda CloudWatch Log Parser

Snags the event data from AWS CloudWatch and returns it as an easy to use JSON object.

Usage

getLogData(opts, function(err, result))

Will call out to Cloudwatch and get the log data based on the parameters specified.

Opts Parameter:

All keys are required.

{
	log_group_name (string) - The name of the log group in CW ex. /aws/lambda/webhooks-io
	log_stream_name (string) - The name of the string in CW ex. 2015/04/06/97811a2c85f54bd285916e1b1d75d6ff
	invoke_id - The actual ID of the invoke that should be returned.
}

Callback Function:

err

A string containing the error information.

result

{
usage: {
	time: (number) - The UNIX timestamp that was associated to the usage log entry.
	billed_duration (number) - The number of milliseconds the function ran for.
	memory_size (number) - The size of Lambda instance that was used for the execution.
	max_memory_size (number) - The total number of mb that was used during execution.
},
exec_status: {},
logs: [{
		invoke_id (string) - The actual invoke_id of the execution.
		type (string) - Defaults to 'log'.  Reserved for future use.
		time (number) - The UNIX timestamp that was associated to the specific log entry.
		data (string) - Data that was actually written to the log.
		},
		{...}]
}

Usage

var aws = {
    accessKeyId : "",
    secretAccessKey: "",
    region: "us-east-1",
    maxRetries: 2,
    sslEnabled: true,
    convertResponseTypes: true
}

var config = {aws : aws};
var Parser = require('@jasonfill/lambda-cloud-watch-log-parser')(config);

var opts = {
    log_group_name: '/aws/lambda/webhooks-io',
    log_stream_name: '2015/04/06/97811a2c85f54bd285916e1b1d75d6ff',
    invoke_id : '5434c6a5-dc40-11e4-9497-9f7835f8ec01'
};

Parser.getLogData(opts, function(err, result){
    console.log(arguments);
});

FAQs

Package last updated on 09 Dec 2015

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc