From 57d214e2dd4bdcafe5ea5a8a60eb0dd98206efb6 Mon Sep 17 00:00:00 2001 From: Henry Oswald Date: Mon, 2 Mar 2015 14:59:30 +0000 Subject: [PATCH] fix metrics key name --- services/spelling/app.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/spelling/app.coffee b/services/spelling/app.coffee index 79e7a9ee0b..376130e435 100644 --- a/services/spelling/app.coffee +++ b/services/spelling/app.coffee @@ -5,7 +5,7 @@ SpellingAPIController = require './app/js/SpellingAPIController' restify = require 'restify' Path = require("path") metrics = require("metrics-sharelatex") -metrics.initialize("tpds") +metrics.initialize("spelling") metrics.mongodb.monitor(Path.resolve(__dirname + "/node_modules/mongojs/node_modules/mongodb"), logger) HealthCheckController = require("./app/js/HealthCheckController")