From 8d2eb535c3ab98b711940050b9f04caaeaafddb3 Mon Sep 17 00:00:00 2001 From: Excitable Aardvark Date: Tue, 6 Feb 2018 13:11:42 +0000 Subject: [PATCH] Update default port --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 4d66c43..e4e1658 100644 --- a/index.js +++ b/index.js @@ -10,7 +10,7 @@ const express = require('express') const prometheus = require('prom-client') const DAEMON_HOST = process.env.DAEMON_HOST || 'http://localhost:18081' -const PORT = process.env.PORT || 3000 +const PORT = process.env.PORT || 9396 const Gauge = prometheus.Gauge const app = express()