This package provides a custom node for Node-RED that wraps the Sentry API for sending captured errors to your sentry project.
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.
cd ~/.node-red
npm install mpowr-it-node-red-sentry-node
- Pull the sentry node — you can find it in the "function" section of the palette — and drop it on the flow.
- Double click the sentry node to configure it (see Node properties below).
- Drop a catch node (from "common" section) to capture all errors in the flow.
- Connect the catch node to the sentry node.
That's it.
This is the unique identifier of your sentry project.
You can find it in your sentry project settings under Client Keys (DSN)
.
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.
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.
User information
{
"user": {
"id": "U123456",
"username": "jdoe",
"email": "jdoe@example.com",
"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"
}
}
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.
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
.
- docker-compose v2.0.0 or higher
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.
make test
make stop