97b0c7db4c2474bab962bedb65ad8dc54312cd16
[beam_stats.git] / src / beam_stats.app.src
1 {application, beam_stats,
2 [
3 {description, "Periodic VM stats production and consumption."},
4 {vsn, "0.0.0"},
5 {registered, []},
6 {applications,
7 [ kernel
8 , stdlib
9 , hope
10 ]},
11
12 {mod, { beam_stats_app, []}},
13
14 {env,
15 [ {production_interval , 30000}
16 , {consumers,
17 [ {beam_stats_consumer_graphite,
18 [ {consumption_interval , 60000}
19 , {host , "localhost"}
20 , {port , 2003}
21 , {timeout , 5000}
22 ]}
23 , {beam_stats_consumer_csv,
24 [ {consumption_interval , 60000}
25 , {path , "beam_stats.csv"}
26 ]}
27 , {beam_stats_consumer_statsd,
28 [ {consumption_interval , 60000}
29 , {dst_host , "localhost"}
30 , {dst_port , 8125}
31 , {src_port , 8124}
32 ]}
33 ]}
34 ]}
35
36 ]}.
This page took 0.047055 seconds and 3 git commands to generate.