https://github.com/runnable/dogstatsyware
middleware for dogstatsd
https://github.com/runnable/dogstatsyware
Last synced: about 2 months ago
JSON representation
middleware for dogstatsd
- Host: GitHub
- URL: https://github.com/runnable/dogstatsyware
- Owner: Runnable
- Created: 2014-04-22T23:35:21.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-04-23T01:32:36.000Z (about 12 years ago)
- Last Synced: 2025-02-16T23:33:10.883Z (over 1 year ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 0
- Watchers: 13
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dogstatsy
A simple DogStatsD client.
## Installation
```
$ npm install dogstatsy
```
## Example
```js
var Dogstatsyware = require('dogstatsyware');
var express = require('express');
var app = express();
app.use(Dogstatsyware({
service: 'myapp'
}));
```