A hapi plugin for sending request response time metrics to AWS CloudWatch.
npm install hapi-cloudwatch
To install this plugin on your Hapi server, do something similar to this:
var Hapi = require('hapi');
var server = new Hapi.Server();
var options = {};
server.register({ register: require('hapi-cloudwatch'), options }, function(err) {
if (err) {
console.log('error', 'Failed loading plugin: hapi-cloudwatch');
}
});
AWS region to send the metrics to.
Defaults to eu-west-1