From 4102aa0580808ac08b6d63c6571a922c20604b11 Mon Sep 17 00:00:00 2001 From: Simon Detheridge Date: Tue, 4 Feb 2020 14:03:56 +0000 Subject: [PATCH] Add more detail to metric --- services/real-time/app.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/real-time/app.coffee b/services/real-time/app.coffee index b27e2dd0f9..677737f862 100644 --- a/services/real-time/app.coffee +++ b/services/real-time/app.coffee @@ -142,7 +142,7 @@ if Settings.shutdownDrainTimeWindow? process.removeAllListeners('uncaughtException') process.on 'uncaughtException', (error) -> if ['EPIPE', 'ECONNRESET'].includes(error.code) - Metrics.inc('disconnected_write') + Metrics.inc('disconnected_write', 1, {status: error.code}) return logger.warn err: error, 'attempted to write to disconnected client' logger.error err: error, 'uncaught exception' if Settings.errors?.shutdownOnUncaughtError