JSPM

  • Created
  • Published
  • Downloads 1772
  • Score
    100M100P100Q116404F
  • License Apache-2.0

Manage logging from Architect-provisioned cloud functions

Package Exports

  • @architect/logs
  • @architect/logs/src/cli
  • @architect/logs/src/cli.js
  • @architect/logs/src/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@architect/logs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@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.