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
- Host: GitHub
- URL: https://github.com/mostlygeek/statsd-backend-raw
- Owner: mostlygeek
- License: mit
- Created: 2013-05-24T17:50:46.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-05-24T18:16:43.000Z (over 12 years ago)
- Last Synced: 2025-02-12T16:51:49.467Z (10 months ago)
- Language: JavaScript
- Size: 104 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
}
};