Add in metric to track client side error count

This commit is contained in:
James Allen 2016-05-26 11:48:22 +01:00
parent b55c469b91
commit 41f789a313

View file

@ -249,6 +249,7 @@ module.exports = class Router
webRouter.post '/error/client', (req, res, next) ->
logger.warn err: req.body.error, meta: req.body.meta, "client side error"
metrics.inc("client-side-error")
res.sendStatus(204)
webRouter.get '*', ErrorController.notFound