From 55fc00c15c109589013cbab1ff8fadf867e7b9c3 Mon Sep 17 00:00:00 2001 From: Anthony Taylor Date: Thu, 3 Sep 2015 11:24:34 -0400 Subject: [PATCH] Missing comma from init missed comma causing crashes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 257e45a..f6cc6de 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ var pmx = require('pmx').init({ errors : true, // Exceptions loggin (default: true) custom_probes : true, // Auto expose JS Loop Latency and HTTP req/s as custom metrics network : true, // Network monitoring at the application level - ports : true // Shows which ports your app is listening on (default: false) + ports : true, // Shows which ports your app is listening on (default: false) alert_enabled : true // Enable alert sub field in custom metrics (default: false) }); ```