0.1.2 • Published 7 years ago

hey-joe v0.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Hey-Joe Build Status

Who loves, cares ... and keeps caring! Pay attention: we are in beta version. At this time (versions 0.1.x) we are checking the consistency of the monitoring variables (the black boxes of the image below) in different operating systems and the portability of the monitoring page between browsers.

One Step Installation

Installation can be done via npm with the command below:

npm install hey-joe

One Step Configuration

Add the code below in your application. This code is the call of Hey-Joe Middleware with the use method of Express.

app.use(require('hey-joe'));

How to access

Hey-Joe publishes a single page in the URL /hey-joe from the root of the project. Upon accessing it, you will see something similar to the one below:

Customizing the parameters

It is possible to customize the parameters used in the status of the monitoring variables. There are 5 possible statuses:

  • loading: displayed only during initial loading;
  • stable: indicates that the system is stable, according to the established values;
  • unstable: indicates that there is excessive use of the resource, but not yet urgent;
  • dangerous: the system is in a dangerous status, almost at the limit of use;
  • error: occurs when it is not possible to obtain data from the resource, either because of a general failure, or because the system has reached a critical use status.

The customization of the rules for obtaining the status of the monitoring variables can be accomplished by changing the custom-rules.js file located in the Hey-Joe middleware root (node_modules/hey-joe). When you open this file, you will see the following code:

var customRules = {
    monitoringVariables: {
        cpuOS: {
            status: function(value) {
                if (value < 70) return "stable";
                else if (value < 90) return "unstable";
                else return "dangerous";
            }
        },
        /* others configurations... */
    }
};

By the status functions available within each monitoring variable you can change the variable status calculation rule. Currently Hey-Joe works with the following monitoring variables:

VariableDescription
cpuOSPercentage of CPU usage by Operating System. The calculation of the percentage of use is obtained with the aid of the library os-utils, comparing use and free values of the CPU.URL: /hey-joe/api/0/cpu/os
cpuProcessPercentage of CPU usage by NodeJS Process. We use the pidusage library to obtain the CPU % used by the current NodeJS process. This library is Cross-Platform and gets this process data through operating system commands.URL: /hey-joe/api/0/cpu/process
requestsMeanTimeCalculates the average time of requests http. The graph displays the values in milliseconds, indicating the best time, the mean time, and the worst time. The request value is obtained through the difference between a timestamp marked on the request entry (as soon as the Hey-Joe Middleware is added) and a timestamp marked on the final response command (Hey-Joe has a filter for this). The sum of all these values divided by the total of requisitions gives us the average value. Among all, the fastest is indicated in the min and the worst in the top.URL: /hey-joe/api/0/requests/mean-time
requestsNumber of concurrent requests on the server. In this case, the Hey-Joe middleware requisitions are counted. This value is obtained through an internal NodeJS command (socket.server.getConnections).URL: /hey-joe/api/0/requests
requestsPerHourIndicates the total number of requests per hour. In this case, Hey-Joe middleware requests are NOT counted. This value is obtained through a counter that records all requisitions. Every hour this value is reset.URL: /hey-joe/api/0/requests/hour
kbytesPerMinuteTotal KBytes downloaded by users per minute. This variable also considers the data (REST api and static content) used by Hey-Joe. Hey-Joe has a filter that runs on all end events of the Express response object. At this time, all return byte types are calculated. The bytes of the returns are summed and stored in a counter that is cleaned every minute.URL: /hey-joe/api/0/kbytes/minute
diskPercentage of disk usage. This variable is obtained through the diskspace and windows-cpu libraries. Attention: Hey-Joe will only consider the use of the main disk of the operating system. That is, / on Linux and macOS systems and C: on Windows systems. If you need to point to another disk, change the value of the mainDisk variable in the infrastructure/disk.js file. See an example: let mainDisk = '/boot';URL: /hey-joe/api/0/disk
uptimeOSThe operating system uptime is obtained through the os.uptime() command from the NodeJS internal library.URL: /hey-joe/api/0/uptime/os
uptimeProcessThe uptime of the process by which the NodeJS is executed is obtained through the process.uptime() command from the NodeJS internal library.URL: /hey-joe/api/0/uptime/process
residentSetSizeA running program is always represented through some space allocated in memory. This space is called Resident Set. This variable displays the size (in megabytes) of the Resident Set of the NodeJS over time.URL: /hey-joe/api/0/memory/rss
heapHeap is a memory segment dedicated to storing reference types like objects, strings and closures. The chart will show current and recent used and total values in megabytes.URL: /hey-joe/api/0/memory/heap
processMemoryDisplays the memory used by the NodeJS process (in megabytes) and the total available memory on the server. We use the pidusage library to obtain the NodeJS memory and OS library to obtain total memory of the server.URL: /hey-joe/api/0/memory/process

Comments: 1. The value 0 is the version number of the API, which for the moment is zero. 2. Before the first / in URL you should put the address of your website and the appropriate protocol (http or https).

See below for an example configuration where the status function of the cpuOS variable will always return stable if it has less than 30% processing. Otherwise, it returns dangerous.

var customRules = {
    monitoringVariables = {
        cpuOS: {
            status: function(value) {
                if (value < 30) return "stable";
                else return "dangerous";
            }
        },
        /* others configurations... */
    }
};

Note that the returned status must be written in the lower case. Rules like this can be adjusted for any other variables. Adjust them according to the reality of your server and be happy!

Colors and flavors

As you will see, Hey-Joe background changes color according to the behavior of his monitoring variables. The color will always indicate the worst status among the variables. The colors used are:

  • Gray: only during the first reading of the variables;
  • Blue: indicates that all variables are stable, according to the rules defined in the custom-rules.js file;
  • Light brown: indicates that one or more variables are unstable. Not so bad, but stay tuned;
  • Orange: indicates a dangerous status to the system (according to its rules). If it continues to get worse, it could lead to a denial of service;
  • Red: call the administrators! Your server is off or extremely compromised. Caution: If there is a code error in the custom-rules.js file, this color will also be displayed.

Prerequisites

  • NodeJS: Obviously, to run everything, including this middleware.
  • Express: The best NodeJS framework.
  • JQuery: no comments...
  • lowdb: A NoSQL database that stores JSON's in a local file.
  • cors: Enable CORS on Express.
  • diskspace: This is a simple module for Node.js to check disk space usage in bytes on both *nix and Windows systems. Note: In the old versions (0.0.x) we used diskusage, which is also an excellent library. However, we were having problems installing node-gyp, which is one of its dependencies. Installing node-gyp depends on administrator access on the computer and python configuration, a reality that is not always possible on NodeJS servers. If you have problems with diskspace, please open a Github issue that we will resolve.
  • os-utils: Library for operating system data.
  • Chartist.js: Very light graphics library.
  • moment.js: Date manipulation library.
  • express-end: Express middleware to emit end event on res.end().
  • pidusage: Cross-platform process cpu % and memory usage of a PID.
  • windows-cpu: CPU monitoring utilities for Node.js apps on Windows. It was used to work around an error reading the CPU used in the Windows operating system (fix issue #25).

Cool Sites

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.15

7 years ago

0.0.14

7 years ago

0.0.13

7 years ago

0.0.12

7 years ago

0.0.11

7 years ago

0.0.10

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago