From f72c4f28dad94a0ffaf3ece850a731d686f1394c Mon Sep 17 00:00:00 2001 From: Raul Ochoa Date: Wed, 15 Oct 2014 17:16:29 +0200 Subject: [PATCH] Prepend also the app name --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 4a8f269c..d60bdfd3 100755 --- a/app.js +++ b/app.js @@ -82,7 +82,7 @@ ws = CartodbWindshaft(serverOptions); if (global.statsClient) { redisPool.on('status', function(status) { - var keyPrefix = 'redis-pool.' + status.name + '.db' + status.db + '.'; + var keyPrefix = 'windshaft.redis-pool.' + status.name + '.db' + status.db + '.'; global.statsClient.gauge(keyPrefix + 'count', status.count); global.statsClient.gauge(keyPrefix + 'unused', status.unused); global.statsClient.gauge(keyPrefix + 'waiting', status.waiting);