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

node-red-contrib-industrial-machine-forecast

v1.0.2

Published

Node-RED node for time-series forecasting and anomaly detection using Exponential Smoothing

Downloads

29

Readme

node-red-contrib-industrial-machine-forecast

This Node-RED custom node applies exponential smoothing to forecast the next value in a time series and flags any anomalies based on a configurable threshold. It can be especially useful for predictive or preventive maintenance of equipment or any application involving time-series data where sudden spikes or drops are critical.

Installation

Install directly from your Node-RED's Setting Pallete

or

This package can be installed via npm:

npm install node-red-contrib-industrial-machine-forecast

Usage

The node uses a simple exponential smoothing model for forecasting. It also computes a running estimate of the variance of the forecast errors to detect anomalies. The smoothing factor alpha and the number of standard deviations for the anomaly threshold can be configured in the node's settings.

The node also includes an adaptive mode that adjusts the smoothing factor based on the volatility of the incoming data. When this option is enabled, the node will become more responsive to significant changes in the data and less responsive when the data is stable.

Each message received should have the new observation in the msg.payload property. This should be a numeric value.

The node sets msg.payload with an object that contains:

  • value: the current observation.
  • status: "Normal" if the observation is within the normal range or "Anomaly - Sudden Spike" / "Anomaly - Sudden Drop" if the observation is identified as an anomaly.

In addition, the node status will also reflect the output message status.

Configuration

  • Alpha (Smoothing Factor): Determines the weight given to the most recent observation when predicting the next value. Ranges from 0 to 1.
  • Std Devs (Threshold): The number of standard deviations away from the forecast a value has to be to be considered an anomaly.
  • Adaptive Mode: If enabled, adjusts the alpha smoothing factor based on the volatility of the incoming data.

Example

If you have a flow that generates a time series data (like a temperature sensor), you can wire it to this node to monitor the temperature values in real time and detect any anomalies.

Contributing

Feel free to open an issue or submit a pull request if you want to improve this node.

License

GPL-3.0