npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

aft-logging-awskinesis

v9.0.0

Published

Automated Functional Testing (AFT) logging plugin package supporting test reporting to AWS Kinesis Firehose

Downloads

5

Readme

AFT-Logging-AWSKinesis

an Automated Functional Testing (AFT) library providing logging to an AWS Kinesis Firehose endpoint for any TestResult objects logged via the aft-core.LogManager

Installation

> npm i aft-logging-awskinesis

Configuration

to send values to AWS Kinesis Firehose endpoints you must specify the AWS Credentials, the AWS Region Endpoint and the AWS Kinesis Delivery Stream. These take the following form in your aftconfig.json:

{
  "logmanager": {
    "level": "none",
    "plugins": [{
      "name": "kinesis-logging-plugin",
      "searchDirectory": "../",
      "options": {
        "enabled": true,
        "level": "info",
        "accessKeyId": "your-aws-access-key-id",
        "secretAccessKey": "your-aws-secret-access-key",
        "sessionToken": "your-aws-session-token",
        "region": "us-west-1",
        "deliveryStream": "your-frehose-delivery-stream",
        "batch": false,
        "batchSize": 1
      }
    }]
  }
}
  • name - a string containing kinesis-logging-plugin instructing the pluginloader to load this plugin
  • searchDirectory - an optional string containing the root directory to begin searching for this plugin when first attempting to load it (defaults to current working directory)
  • options - an optional object containing options for the plugin when it is first loaded. accepted values are as follows:
    • enabled - an optional boolean indicating if this plugin should be used or not (defaults to true)
    • level - an optional LogLevel to be used by this plugin (defaults to value set in LogManager)
    • accessKeyId - a string containing your AWS IAM user's Access Key ID. if not specified the value will attempt to be read from environment variables, EC2 metadata, shared ini file, ECS credentials and process credentials in that order
    • secretAccessKey - a string containing your AWS IAM user's Secret Access Key. if not specified the value will attempt to be read like accessKeyId
    • sessionToken - a string containing your AWS IAM user's Session Token. only required if you are using a temporary session. if not specified the value will attempt to be read like accessKeyId
    • region - a string containing the AWS region where the Kinesis Firehose stream is located. values like eu-west-1 or us-west-2 are expected.
    • deliveryStream - a string containing the name of the Kinesis Firehose stream to send through. If using Elasticsearch as your back-end storage, this would be the Elasticsearch index to use.
    • batch - an optional boolean indicating whether logs should be batched before forwarding to Kinesis Firehose (defaults to true)
    • batchSize - an optional number representing the number of log records to batch before sending (defaults to 10)

NOTE: the AWS Credentials are first attempted to be read from AFT Configuration and if no value is specified then the following are checked:

  • Environment Variables: AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_SESSION_TOKEN
  • EC2 Metadata: also known as instance profile credentials
  • Shared Ini File: read from the host system
  • ECS Credentials: similar to the EC2 Metadata, but on ECS
  • Process Credentials: any credentials set on the current process
  • Options: read from passed in KinesisLoggingPluginOptions

Format of log records

the log record that is sent to your AWS Kinesis Firehose endpoint will have the following format:

message logs

{
    "logName": "if used with a Verifier this will be the 'description' or 'Test IDs' or a GUID",
    "message": "this is the actual message being logged", 
    "level": "warn", 
    "version": "3.0.0", 
    "buildName": "Jenkins or Team City Job Name", 
    "buildNumber": "Jenkins or Team City Job Number", 
    "machineInfo": {
      "ip": "234.9.10.11",
      "name": "CETH-ARG-WIN10",
      "user": "SYSTEM"
    }
}
  • logName - the logName passed to this plugin when loaded from the LogManager
  • message - the string being logged by some component
  • level - a string value from one of the aft-core.LoggingLevel values based on the level of the message being logged
  • version - the current version of the KinesisLoggingPlugin
  • buildName - a string retrieved from the BuildInfoManager.getBuildName function
  • buildNumber - a string retrieved from the BuildInfoManager.getBuildNumber function
  • machineInfo - an aft-core.MachineInfoData object containing the following:
    • ip - a string of the machine's IP address
    • name - a string of the machine's name
    • user - a string of the currently logged in user who executed the tests

TestResult logs

{
    "logName": "if used with Verifier this will be the 'description' or 'Test IDs' or a GUID",
    "result": {
      "testId": "1234",
      "resultMessage": "the final result was a SUCCESS!",
      "status": "Passed",
      "resultId": "dbbf6fce-14db-4bd2-ba31-e3fa68d719e4",
      "created": 1655289028279,
      "defects": [
        {
          "id": "3344",
          "title": "a defect that has now been closed",
          "description": "this defect used to affect this test, but now it doesn't :)",
          "status": "closed"
        }
      ],
      "metadata": {}
    }, 
    "buildName": "Jenkins or Team City Job Name", 
    "buildNumber": "Jenkins or Team City Job Number", 
    "machineInfo": {
      "ip": "234.9.10.11",
      "name": "CETH-ARG-WIN10",
      "user": "SYSTEM"
    }
}
  • logName - the logName passed to this plugin when loaded from the LogManager
  • result - an TestResult object containing the following:
    • testId - a string containing any unique ID for the test result being recorded
    • resultMessage - a string message of the final result
    • status - a string representing the aft-core.TestStatus value
    • resultId - a string containing a unique identifier for the TestResult
    • created - a number containing the date and time the TestResult was created as milliseconds since the epoch
    • defects - an array of aft-core.Defect objects
    • metadata - an object that can contain additional data for the TestResult
  • version - the current version of the KinesisLoggingPlugin
  • buildName - a string retrieved from the BuildInfoManager.getBuildName function
  • buildNumber - a string retrieved from the BuildInfoManager.getBuildNumber function
  • machineInfo - an aft-core.MachineInfoData object containing the following:
    • ip - a string of the machine's IP address
    • name - a string of the machine's name
    • user - a string of the currently logged in user who executed the tests