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

hubot-stackstorm

v0.12.0

Published

A hubot plugin for integrating with StackStorm event-driven infrastructure automation platform.

Downloads

110

Readme

StackStorm

Build Status IRC

StackStorm Hubot Plugin

Hubot plugin for integrating with StackStorm event-driven infrastructure automation platform.

Installing and configuring the plugin

To install and configure the plugin, first install hubot by following the installation instructions at https://hubot.github.com/docs/.

After you have installed hubot and generated your bot, go to your bot directory and install the plugin npm package:

npm install hubot-stackstorm

After that, edit the external-scripts.json file in your bot directory and make sure it contains hubot-stackstorm entry.

[
  ...
  "hubot-stackstorm"
]

Final file should look something like that:


[
  "hubot-diagnostics",
  "hubot-help",
  "hubot-heroku-keepalive",
  "hubot-google-images",
  "hubot-google-translate",
  "hubot-pugme",
  "hubot-maps",
  "hubot-redis-brain",
  "hubot-rules",
  "hubot-shipit",
  "hubot-youtube",
  "hubot-stackstorm"
]

If you want to use this plugin with a Slack adapter, you also need to install hubot-slack npm package.

npm install hubot-slack

After that's done, you are ready to start your bot.

Plugin environment variable options

To configure the plugin behavior, the following environment variable can be specified when running hubot:

  • ST2_API_URL - URL to the StackStorm API endpoint.
  • ST2_WEBUI_URL - Base URL to the WebUI. If provided, link to the execution history will be provided in the chat after every execution (optional).
  • ST2_AUTH_USERNAME - API credentials - username (optional).
  • ST2_AUTH_PASSWORD - API credentials - password (optional).
  • ST2_AUTH_URL - URL to the StackStorm Auth API (optional).
  • ST2_STREAM_URL - URL to the StackStorm Stream API (optional).
  • ST2_COMMANDS_RELOAD_INTERVAL - How often the list of available commands should be reloaded. Defaults to every 120 seconds (optional).
  • ST2_MAX_MESSAGE_LENGTH - Message truncation to preserve chat context. Default is 500 characters of length. 0 means no limit (optional).
  • ST2_SLACK_SUCCESS_COLOR - Slack attachement color for success, can either be one of good, warning, danger, or any hex color code (optional).
  • ST2_SLACK_FAIL_COLOR - Slack attachement color for failures either be one of good, warning, danger, or any hex color code (optional).
  • ST2_ROCKETCHAT_SUCCESS_COLOR - RocketChat attachement color for success, can either be one of good, warning, danger, or any hex color code (optional).
  • ST2_ROCKETCHAT_FAIL_COLOR - RocketChat attachement color for failures either be one of good, warning, danger, or any hex color code (optional).

Note: ST2_ROUTE environment variable mentioned below should only be specified if you modified the rule which comes with a hubot pack to use a non default value of hubot for the trigger.route criteria.

  • ST2_ROUTE - StackStorm notification channel where all the notification messages should be sent to. This is the reference to the channel construct internal to StackStorm's notification system. Make sure this value is set to whatever is assigned the rule that defines a StackStrom channel. e.g. hubot is a value that works well with the hubot pack found at https://github.com/StackStorm/st2contrib/tree/master/packs/hubot.

Running the bot

To run the bot, go to your bot directory and run the following command:

ST2_AUTH_USERNAME=testu ST2_AUTH_PASSWORD=testp HUBOT_SLACK_TOKEN=token ST2_ROUTE=mychannel PORT=8181 bin/hubot --name "st2-bot" -a slack --alias !

Keep in mind that you need to replace values of the environment variables so they reflect configuration of your environment.

Known issues / limitations

Please see https://github.com/StackStorm/hubot-stackstorm/issues

Testing

Lint

gulp lint

Tests

gulp test

Publishing

Reminder to ourselves, instead of bumping the version manually, use mversion.

npm install -g mversion
mversion patch

This will bump the version in package.json, commit and create a tag with format described in .mversionrc.

Copyright, License, and Contributors Agreement

Copyright 2015-2019 Extreme Networks, Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

By contributing you agree that these contributions are your own (or approved by your employer) and you grant a full, complete, irrevocable copyright license to all users and developers of the project, present and future, pursuant to the license of the project.