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

bitclimb-redis

v1.0.4

Published

An updated fork of PM2 module `pm2-redis` that monitors a Redis server with Keymetrics.

Downloads

13

Readme

Description

An updated fork of PM2 module pm2-redis that monitors a Redis server with Keymetrics.

Install

pm2 install bitclimb-redis

Configure

  • workerInterval (Defaults to 2 in secs) : You can control at which interval the worker is updating the stats (minimum is 1)
  • host (Defaults to 127.0.0.1): Set the host of your redis server.
  • port (Defaults to 6379): Set the port of your redis server.
  • password (Defaults to empty): Set the password if you have activated the authentification
  • url (Defaults to empty): Optional. You can also use a Redis Url. Allowed formats: [redis:]//[:password@][host][:port] [rediss:]//[: password@][host][:port]

How to set these values ?

After having installed the module you have to type : pm2 set bitclimb-redis:

e.g:

  • pm2 set bitclimb-redis:workerInterval 5 (every 5 seconds)
  • pm2 set bitclimb-redis:host 42.42.42.42 (host of my redis server)
  • pm2 set bitclimb-redis:password "bestpassword" (the password will be used to connect to redis)
  • pm2 set bitclimb-redis:url "redis://:[email protected]:6379" (Optional. The url will be used to connect to redis)

This module also accepts the following environment variables:(all values are prefixed with process.env)

  • REDIS_HOST or PM2_REDIS_HOST
  • REDIS_PORT or PM2_REDIS_PORT
  • REDIS_PW or PM2_REDIS_PW
  • REDIS_URL or PM2_REDIS_URL

Recomnended (jsonfile)

It is recommended to put your sensitive info hidden from prying eyes. This module now accepts loading Redis credentials via json file.

  • pm2 set bitclimb-redis:jsonfile "/home/user/yourpath/to/whatevername.json"

The json file format accepts the following example:

{
  "REDIS_HOST": "127.0.0.1",
  "REDIS_PORT": 6379,
  "REDIS_PW": "youramazingpassword"
}

Or simply by Redis Url:

{
  "REDIS_URL": "redis://:[email protected]:6379"
}

Uninstall

pm2 uninstall bitclimb-redis

Changelog(difference from the original module pm2-redis)

  • Updated redis
  • Updated configuration based on the latest redis
  • Allow usage of Redis Url and all other available configurations of redis
  • Allow usage of json configration file by declaring the path as a jsonfile config
  • Structure codebase for modularity
  • Dynamic lookup of Redis PID at /var/run
  • Async/Await and ES6 classes
  • Uses setTimeout instead of setInterval