An open API service indexing awesome lists of open source software.

https://github.com/mostlygeek/statsd-backend-raw

A backend for statsd that dumps the data out as a JSON string
https://github.com/mostlygeek/statsd-backend-raw

Last synced: 8 months ago
JSON representation

A backend for statsd that dumps the data out as a JSON string

Awesome Lists containing this project

README

          

Simple backend for statsd that just dumps the data it sends in
a `flush` event to the console.

## Installation

Add this to your `package.json` in dependencies

"dependencies": {
....
"statsd-backend-raw": "git://github.com/mostlygeek/statsd-backend-raw.git"
}

Then in your StatsD configuration add `statsd-backend-raw` to the `backends` key.

Example config for statsd:

{
port: 8125
, debug: true
, backends: [ "statsd-backend-raw" ]
, flushInterval : 2500
, console: {
prettyPrint: true
}
};