1 [![Build Status](https://travis-ci.org/ibnfirnas/beam_stats.svg?branch=master)](https://travis-ci.org/ibnfirnas/beam_stats)
6 Periodically collects and pushes VM metrics to arbitrary consumers. Defaults to
7 StatsD (`beam_stats_consumer_statsd`) and includes off-by-default implementations for Graphite
8 (`beam_stats_consumer_graphite`) and CSV file (`beam_stats_consumer_csv`)
11 Essentially like `folsomite`, but better. Better in the following ways:
13 - More-general: consumers other than graphite can be defined
14 - More-focused: only concerned with VM metrics, while `folsomite` ships off
15 _everything_ from `folsom` (in addition to VM metrics)
16 - Easier-to-reason-about implementation: well-defined metrics-to-binary
17 conversions, as opposed to the nearly-arbitrary term-to-string conversions
19 - Spec'd, tested and Dialyzed
21 #### Configure consumers
25 [ {production_interval , 30000}
27 [ {beam_stats_consumer_statsd,
28 [ {consumption_interval , 60000}
29 , {dst_host , "localhost"}
33 , {beam_stats_consumer_graphite,
34 [ {consumption_interval , 60000}
35 , {host , "localhost"}
39 , {beam_stats_consumer_csv,
40 [ {consumption_interval , 60000}
41 , {path , "beam_stats.csv"}
44 , {some_custom_consumer_module,