GitXplorerGitXplorer
d

statsd-opentsdb-backend

public
33 stars
20 forks
6 issues

Commits

List of commits on branch master.
Unverified
059eb9cd881c04b942c80bfdd887bc9ed96f733d

Merge pull request #4 from overstre/master

ddanslimmon committed 9 years ago
Unverified
bd889d8890d62c06297b6f1e405ef9a2bae9aa48

Use stripped key in legacy namespace for counters.

ooverstre committed 11 years ago
Unverified
74ebbcc626edee0fe7e3f89813f389b5c27f8ac9

Merge pull request #3 from danslimmon/master

committed 12 years ago
Unverified
4f665b7e44c28fe92a80cf35ae1c4bdcbfcbde51

Added tag support.

ddanslimmon committed 12 years ago
Unverified
89b3dfcbf79e759d1aa1d2b4f32ef9eb0734348b

Fixed typo in README

ddanslimmon committed 12 years ago
Unverified
ab14f9eddc93a74af69806281fdab7fa9fd56851

Merge pull request #2 from crazed/remove-counter-rate

committed 12 years ago

README

The README file for this repository.

StatsD OpenTSDB publisher backend

Overview

This is a pluggable backend for StatsD, which publishes stats to OpenTSDB (http://opentsdb.net)

Installation

npm install statsd-opentsdb-backend

Configuration

You have to give basic information about your OpenTSDB server to use

{ opentsdbHost: 'localhost'
, opentsdbPort: 4242
, opentsdbTagPrefix: '_t_'
}

Tag support

This backend allows you to attach OpenTSDB tags to your metrics. To add a counter called gorets and tag the data foo=bar, you'd write the following to statsd:

gorets._t_foo.bar:261|c

Dependencies

  • none

Development

Issues

If you want to contribute:

  1. Clone your fork
  2. Hack away
  3. If you are adding new functionality, document it in the README
  4. Push the branch up to GitHub
  5. Send a pull request