@architect/logs

5.0.3 • Public • Published

@architect/logs GitHub CI status

@architect/logs is a module that retrieves and clears logs associated to your @architect functions across environments.

Installation

npm i @architect/logs
let logs = require('@architect/logs')

API

logs({pathToCode, verbose, destroy, production}, callback)

Takes a parameter object as first argument which accepts the following properties:

  • pathToCode: required the local path to architect Function code relative to the current working directory, i.e. src/http/get-index
  • verbose: verbose super chatty mode
  • destroy: if truthy will delete logs via logs.destroy, otherwise will read logs via logs.read
  • production: if truthy will target your arc project's production environment, otherwise will default to staging

By default will read logs from the staging environment. If the destroy property is truthy, logs instead will be destroyed.

logs.read({name, pathToCode, ts}, callback)

Will read logs from aws.CloudWatchLogs, invoking getLogEvents for log retrieval.

Takes a parameter object as first argument which accepts the following properties:

  • name: the CloudFormation StackName passed to listStackResources within which to search Function logs. Note that this is inferred from your application name, environment and specific function you are querying - tread carefully!
  • pathToCode: required the local path to architect Function code relative to the current working directory, i.e. src/http/get-index
  • ts: timestamp to use as a start time for displaying length of time details (i.e. Date.now())

callback will be invoked with an error if an error arises during execution. Otherwise, callback will be invoked without arguments.

logs.destroy({name, pathToCode, ts}, callback)

Will delete logs from aws.CloudWatchLogs, invoking deleteLogGroup.

Takes a parameter object as first argument which accepts the following properties:

  • name: the CloudFormation StackName passed to listStackResources within which to search Function logs. Note that this is inferred from your application name, environment and specific function you are querying - tread carefully!
  • pathToCode: required the local path to architect Function code relative to the current working directory, i.e. src/http/get-index
  • ts: timestamp to use as a start time for displaying length of time details (i.e. Date.now())

callback will be invoked with an error if an error arises during execution. Otherwise, callback will be invoked without arguments.

Readme

Keywords

Package Sidebar

Install

npm i @architect/logs

Weekly Downloads

3,342

Version

5.0.3

License

Apache-2.0

Unpacked Size

27.6 kB

Total Files

11

Last publish

Collaborators

  • brianleroux
  • dam
  • kborchers
  • ryanblock
  • architectci
  • filmaj