https://github.com/ovidiubute/metricador-express-middleware
Metricador middleware for Express
https://github.com/ovidiubute/metricador-express-middleware
Last synced: 7 months ago
JSON representation
Metricador middleware for Express
- Host: GitHub
- URL: https://github.com/ovidiubute/metricador-express-middleware
- Owner: ovidiubute
- License: mit
- Created: 2016-02-06T13:04:47.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-10T14:43:05.000Z (over 9 years ago)
- Last Synced: 2025-03-04T18:46:42.462Z (8 months ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Metricador Express middleware
A simple middleware for the Express framework that is backed by the Metricador library. This middleware enables you
to add response time monitoring to an Express Node.js app within minutes, and to be able to plot the resulting data
to a supported metric database. At the moment only Graphite is supported, others coming soon :-). If you don't have a supported
backend you can visualize the data from the console log with no extra configuration.## How to use it
```javascript
var metricador_middleware = require('metricador-express-middleware');var app = express();
app.use(metricador_middleware({namespace: 'your-own-namespace'}));
```# License
[MIT](https://github.com/ovidiubute/metricador-express-middleware/blob/master/LICENSE)