# statsd-wavefront-backend

> StatsD backend for Wavefront

Latest version **0.2.0** (published 2016-01-31) · 0 weekly downloads

## Install

```sh
npm install statsd-wavefront-backend
pnpm add statsd-wavefront-backend
yarn add statsd-wavefront-backend
bun add statsd-wavefront-backend
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.0 |
| Published | 2016-01-31 |
| First published | 2016-01-31 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Evan Pease |
| Maintainers | ezeev |

## Links

- npm: https://www.npmjs.com/package/statsd-wavefront-backend
- Repository: https://github.com/wavefrontHQ/StatsD
- Homepage: https://github.com/wavefrontHQ/StatsD#readme
- Issues: https://github.com/wavefrontHQ/StatsD/issues
- npm.io page: https://npm.io/package/statsd-wavefront-backend

## Recent versions

- 0.2.0 (latest) — 2016-01-31
- 0.1.0 — 2016-01-31

## README

# Wavefront StatsD Plugin

The Wavefront StatsD Plugin sends StatsD metrics to Wavefront. It also extends StatsD by allowing point tags.

## Tagging Metrics

By default, you can send metrics to StatsD as follows:

```
echo "gauge1:+3|g" | nc -u -w0 192.168.99.100 8125
```

The Wavefront backend supports tagging by adding `_t_` (tag) and `_v_` (tag value) flags to your metric names. For example:

```
echo "gauge1_t_tag1_v_v1_t_tag2_v_v2:+3|g" | nc -u -w0 192.168.99.100 8125
```
This will produce a metric that looks like:
```
gauge1:+3
 - tag1:v1
 - tag2:v2
```

## Installation

1. Clone or download StatsD from https://github.com/etsy/statsd.
2. Copy `config.js` and `backends/wavefront.js` from this repository into the statsd directory.
3. Update `config.js` to point to your Wavefront agent. Here is the sample config.js:

```
{
  port: 8125
, backends: ["./backends/wavefront"]
, dumpMessages: true
, wavefrontProxyServer: "192.168.99.100"
, wavefrontProxyPort: 3878
}
```
Run StatsD with the new config:
```
node stats.js config.js
```

---
_Source: https://npm.io/package/statsd-wavefront-backend · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
