UNPKG
hapi-cloudwatch
Version:
latest (1.0.1)
1.0.1
1.0.0
0.0.1
log requests to AWS cloudwatch
github.com/clarkie/hapi-cloudwatch
clarkie/hapi-cloudwatch
hapi-cloudwatch
/
lib
/
lifecycle.js
10 lines
(8 loc)
•
247 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
exports
.
setStartTime
=
(
request, reply
) =>
{ request.
app
.
startTime
= (
new
Date
()).
getTime
();
return
reply.
continue
(); };
exports
.
setEndTime
=
(
request, reply
) =>
{ request.
app
.
endTime
= (
new
Date
()).
getTime
();
return
reply.
continue
(); };