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

mpowr-it-node-red-sentry-node

v1.1.0

Published

A sentry API wrapper node for Node-RED

Downloads

6

Readme

Checks

Node-RED Sentry Node

This package provides a custom node for Node-RED that wraps the Sentry API for sending captured errors to your sentry project.

Installation

Install via Node-RED Manage Palette

Open your Node-RED instance and go to Manage palette and search for mpowr-it-node-red-sentry-node. Press the install button to install the node.

Install via npm

cd ~/.node-red
npm install mpowr-it-node-red-sentry-node

Usage

  1. Pull the sentry node — you can find it in the "function" section of the palette — and drop it on the flow.
  2. Double click the sentry node to configure it (see Node properties below).
  3. Drop a catch node (from "common" section) to capture all errors in the flow.
  4. Connect the catch node to the sentry node.

That's it.

Screenshot sentry node attached to catch-all node

Node properties

DSN

This is the unique identifier of your sentry project. You can find it in your sentry project settings under Client Keys (DSN).

Environment

This tells Sentry which environment the error occurred in.

Please note: You can also set the environment via the ENVIRONMENT environment variable.

If both are set, the node property takes precedence.

Per message configurations

The sentry node will look for the property msg.sentry and if found, any supported config will be set which is contained in the property.

Supported msg.sentry configurations

User information

{
  "user": {
    "id": "U123456",
    "username": "jdoe",
    "email": "[email protected]",
    "ip_address": "127.0.0.1"
  }
}

Additional tags

{
  "tags": {
    "some-tag-key-1": "some-tag-value-1",
    "some-tag-key-n": "some-tag-value-n"
  }
}

How does it work?

If the msg object carries an error on its property msg.error it will be used and sent to your sentry instance. If the message objects also contains a msg._error property it will be added as breadcrumb for the error sent.

Return value

The node will return a payload of type object having a boolean sent property that indicates if the error has been sent to your Sentry project or not.

Please Note: true does not mean that the error was sent to your Sentry instance successfully, as it may fail due to invalid DSN for example, but it means that this node captured the error, parsed it, and executed Sentry.captureException.


Development

Prerequisites

  • docker-compose v2.0.0 or higher

Setup

Clone the repository and run:

make serve

This will start a local Node-RED instance with the sentry node installed.

The web UI under http://127.0.0.1:1880/ will automatically open in your browser.

Testing

make test

Tear down

make stop