Turn-off Graphite and CSV consumers by default.
authorSiraaj Khandkar <siraaj@khandkar.net>
Thu, 20 Aug 2015 16:25:59 +0000 (12:25 -0400)
committerSiraaj Khandkar <siraaj@khandkar.net>
Thu, 20 Aug 2015 16:25:59 +0000 (12:25 -0400)
README.md
src/beam_stats.app.src

index 12e2e3c..09d28d3 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,8 +1,10 @@
 beam_stats
 ==========
 
-Periodically collects and pushes VM metrics to arbitrary consumers (Graphite
-and CSV by default).
+Periodically collects and pushes VM metrics to arbitrary consumers. Defaults to
+StatsD and includes off-by-default implementations for Graphite
+(`beam_stats_consumer_graphite`) and CSV file (`beam_stats_consumer_csv`)
+consumers).
 
 Essentially like `folsomite`, but better. Better in the following ways:
 
index 97b0c7d..da3e2a3 100644 (file)
   {env,
     [ {production_interval , 30000}
     , {consumers,
-        [ {beam_stats_consumer_graphite,
-            [ {consumption_interval , 60000}
-            , {host                 , "localhost"}
-            , {port                 , 2003}
-            , {timeout              , 5000}
-            ]}
-        , {beam_stats_consumer_csv,
-            [ {consumption_interval , 60000}
-            , {path                 , "beam_stats.csv"}
-            ]}
-        , {beam_stats_consumer_statsd,
+        [ {beam_stats_consumer_statsd,
             [ {consumption_interval , 60000}
             , {dst_host             , "localhost"}
             , {dst_port             , 8125}
This page took 0.019 seconds and 4 git commands to generate.