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 🙏

© 2025 – Pkg Stats / Ryan Hefner

hubot-ibmcloud-audit

v0.0.17

Published

hubot-ibmcloud-audit

Downloads

24

Readme

Build Status Coverage Status Dependency Status npm

hubot-ibmcloud-audit

This project is used to keep an audit trail of Hubot activities in Elasticsearch.

Getting Started

Usage

Steps for adding this to your hubot:

  1. cd into your hubot directory
  2. Install this package via npm install hubot-ibmcloud-audit --save
  3. Add hubot-ibmcloud-audit to your external-scripts.json
  4. Add the necessary environment variables:

HUBOT_AUDIT_ENDPOINT=location of Elasticsearch

Overview

hubot-ibmcloud-audit captures both incoming adapter traffic and outgoing HTTP traffic (to other sites and services). Incoming adapter traffic is captured in an type of AdapterLogEntry with an index of hubotadapterrequest. The incoming adapter traffic is captured by hooking into the Hubot framework via a Hubot middleware listener. Logic has been added to the listener so that even if there are multiple matches the input will only be logged once.

The information captured includes:

  • UUID, spaceid, and groupid: These are applicable to a hubot running inside a docker container. They will default to DEFAULT_UUID, DEFAULT_SPACE, and DEFAULT_GROUP if the Hubot is not running inside a container.
  • userName
  • userId (email address)
  • message text
  • room ID
  • adapter name
  • robot name
  • time of the message

This information is logged to Elasticsearch. The location of Elasticsearch is determined by the value of the environment variable HUBOT_AUDIT_ENDPOINT. HUBOT_BLUEMIX_AUDIT_DISABLED can also be set to true to disable all auditing (both of incoming adapter and outgoing HTTP traffic).

Outgoing HTTP traffic is captured by hooking into Node's default http and https modules by using the global-request-logger package. It is captured in a type of HttpLogEntry with an index of hubothttprequest. The following information is captured:

  • UUID, spaceid, and groupid: Again, only applicable to a hubot running inside a docker container. Otherwise they default to DEFAULT_UUID, DEFAULT_SPACE, and DEFAULT_GROUP.
  • protocol
  • URL
  • host
  • method
  • time of outgoing request
  • response status code In order to prevent an infinite logging loop, traffic to the Elasticsearch HUBOT_AUDIT_ENDPOINT is not logged. Traffic to 'api.slack.com/api' is also not logged.

There is one additional piece to hubot-ibmcloud-audit that allows it to play nice with hubot-ibmcloud-nlc. Because hubot-ibmcloud-nlc bypasses the normal listener middleware path, hubot-ibmcloud-audit reacts to an emit on ibmcloud-nlc-to-audit and logs the incoming adapter traffic when it receives that.

License

See LICENSE.txt for license information.

Contribute

Please check out our Contribution Guidelines for detailed information on how you can lend a hand.