@theotherwillembotha/node-red-statsd 0.4.0 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +17 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -0,0 +1,17 @@
1
+ # node-red-statsd
2
+
3
+ A StatsD metrics provider plugin for [node-red-plugincore](https://github.com/theotherwillembotha/nodered_plugincore). Pushes Counter, Timer, and Gauge metrics to any StatsD-compatible backend (StatsD, Graphite, Datadog Agent, etc.) using the [hot-shots](https://github.com/brightcove/hot-shots) client.
4
+
5
+ ## Features
6
+
7
+ - **Counter** — increment-based metrics via `client.increment()`
8
+ - **Timer** — timing/histogram metrics via `client.timing()`
9
+ - **Gauge** — absolute value metrics via `client.gauge()`
10
+ - **Configurable metric key pattern** — template variables (`{{metric}}`, `{{name}}`, `{{flow}}`, `{{type}}`, `{{id}}`) let you compose meaningful StatsD keys
11
+ - **UDP or TCP transport** — selectable per config node
12
+ - **Optional prefix** — prepended to all metric keys automatically
13
+
14
+ ## Requirements
15
+
16
+ - Node-RED >= 4.0.0
17
+ - [@theotherwillembotha/node-red-plugincore](https://github.com/theotherwillembotha/nodered_plugincore) >= 0.4.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theotherwillembotha/node-red-statsd",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "StatsD metrics provider plugin for node-red-plugincore.",
5
5
  "author": "Willem Botha (@theotherwillembotha)",
6
6
  "license": "ISC",