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

micro-app-ping-monitor

v0.0.5

Published

internet liveness monitor

Downloads

2

Readme

micro-app-ping-monitor

Micro-app to monitor remote hosts and to alert and take action when hosts are not responding. Its obviously not a replacement for a full featured monitoring tool but is handy if you want to monitor a small number of hosts and automtically be notified or take action when they are not responding.

It allows one or more monitor instances to be defined, each with one or more hosts to be monitored. If more than one host is configured for an instance it can be of type "all" or "any". In the case of all, all of the hosts must respond or an alert is signaled. In the case of "any" an alert is triggered only if none of the hosts are available.

I use it to monitor my internet connectivity and to automatically power off/on the modem in the case of failure, monitor my website, as well as to monitor a number of cloud virtual machines.

Logging can be configured to send an sms message on a "error" log message which results in a sms message when an alert is triggered.

For each monitor instance, you configure the size and positioning of the element for the monitor instance in the GUI. It will have the text you provide as the label and be green by default. When the configured condition is detected it will change to yellow and then after the alert time interval it will go to red and an alert will be triggered.

The following is an example of one of the configurations that I'm using which as 7 monitor instances configured:

pingmonitor1

Given that you can configure the monitor instances, size of the main window and the size of the element for each instance you can easily configure many different types of monitor apps.

When an alert is triggered you can also configure one or more commands to be invoked. Currently commands are messages posted to an mqtt topic (I'm planning to add additional command types in the future). By using projects like PI433WirelessTXManager you can trigger actions like a power cycle to occur when an alert triggers.

In addition to showing the status of the monitor instances, the GUI for the micro-app also allows you to view the log which records the state changes for the monitor instances. The following is an example of the log display:

pingmonitor2

You can toggle between showing the status for the monitor instances and the log using the button provided at the bottom of the GUI.

Usage

After installation modify ../lib/config.json to match your configuration.

The configuration entries that must be updated include:

  • windowSize - object with x and y fields which specifies the overall size of the GUI window for the micro app.
  • monitorInstances - array of one or more monitorInstance objects as specified below.
  • serverPort - port on which the server will listen.
  • mqttServerUrl: - url for mqtt server on which commands will be posted when alerts are triggered.
  • twilio - object which contains fields for twilio configuration used to send sms messages as described below.
  • eventLogPrefix - path to the directory in which the event log file will be stored.

Each monitorInstance has the following fields:

  • name - name assigned to the monitor instance. Used in log messages.
  • button - object with size, position and label fields. size and position fields have x and y fields which specify the size and position of the element (in pixels) in the GUI for the monitor instance. The label field should be a string with the label that will be used in the GUI for the monitor instance.
  • checks - array with one or more hosts to check. Each hosts entry is an object with host and port fields. For example to check for ssh connectivity to host foo, host = "foo" and port = 22.
  • commands - arary of one or more command objects as described below to be invoked when an alert is triggered.
  • type - one of "all" or "any".
  • pingInterval - the interval in milliseconds at which the connectivity checks will be made.
  • alertTime - the time in milliseconds after which an alert will be triggered if the conectivity checks have failed continuously.

Each command object has the following fields:

  • delay - (optional) the delay after the alert is triggered that the the command will be invoked.
  • topic - the mqtt topic on which the message will be posted.
  • message - the message to be posted to the mqtt topic.

The twilio object has the following fields:

  • sendError - set to true if you want to send an sms message when an log message at the "error" level is logged.
  • accountSID - your twilio account ID.
  • accountAuthToken - your twilio auth token.
  • toNumber - number to which an sms will be sent.
  • fromNumber - your twilio from number.

The following is an example of a configuration file with some sensitive elements masked out:

{
"windowSize": {"x": 200, "y": 256 },
"monitorInstances": [
  { "name": "Internet availability",
    "button" : { "size": {"x": 198, "y": 30 },
                 "position": {"x": 1, "y": 0 },
                 "label": "Internet Avail" },
    "checks": [ { "host": "www.google.com", "port": 80 },
                { "host": "myhost.com", "port": 22 }
              ],
    "commands": [ { "delay": 0, "topic": "home/2272/200", "message": "0F0F0FF00110" },
                  { "delay": 5000, "topic": "home/2272/200", "message": "0F0F0FF00110" },
                  { "delay": 30000, "topic": "home/2272/200", "message": "0F0F0FF00101" },
                  { "delay": 35000, "topic": "home/2272/200", "message": "0F0F0FF00101" },
                  { "delay": 40000, "topic": "home/2272/200", "message": "0F0F0FF00101" }
                ],
    "type": "any",
    "pingInterval": 300000,
    "alertTime": 900000
  },
  { "name": "My website",
    "button" : { "size": {"x": 198, "y": 30 },
                 "position": {"x": 1, "y": 32 },
                 "label": "website" },
    "checks": [ { "host": "www.mywebsite.com", "port": 80 }
              ],
    "type": "all",
    "pingInterval": 300000,
    "alertTime": 900000
  }
],
"serverPort": 3001,
"mqttServerUrl": "tcp://XX.XX.XX.XX:1883",
"twilio": { "sendError": true,
            "accountSID": "XXXX",
            "accountAuthToken": "XXXX",
            "toNumber": "XXXXXXXXXXX" , "fromNumber": "XXXXXXXXXX" },
"eventLogPrefix" : "/home/user1/ping/micro-app-ping-monitor"
}

Installation

Simply run:

npm install micro-app-ping-monitor

Running

To run the ping-monitor micro-app, add node.js to your path (currently required 4.x or better) and then run:

npm start

Key dependencies

micro-app-framework

As a micro-app the micro-app-ping-monitor app depends on the micro-app-framework:

See the documentation on the micro-app-framework for more information on general configuration options (in addition to those documented in this readme) that are availble (ex using tls, authentication, serverPort, etc).

tcp-ping

tcp-ping which is used to do the connectivity checks to the remote hosts.

twilio

Twilio which is used to send sms messaages.