Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 393 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 393 Bytes

Riemann StatsD Backend

Sends StatsD stats on each flush to Riemann.

Installation

$ npm install riemann-statsd-backend

Configuration

// config.js
{
  "backends": ["riemann-statsd-backend"],

  "riemann": {
    "host": "127.0.0.1",
    "port": 5555,
    "transport": "udp",  // "udp" or "tcp"
    "tags": ["some", "tags"],
    "ttl": 60  // ttl seconds, optional
  }
}