Reformat list of dep apps in app config.
[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 ]},
10
11 {mod, { beam_stats_app, []}},
12
13 {env,
14 [ {production_interval , 30000}
15 , {consumers,
16 [ {beam_stats_consumer_graphite,
17 [ {consumption_interval , 60000}
18 , {connect_options,
19 [ {host , "localhost"}
20 , {port , 2003}
21 , {timeout , 5000}
22 ]}
23 ]}
24 , {beam_stats_consumer_csv,
25 [ {consumption_interval , 60000}
26 , {path , "beam_stats.csv"}
27 ]}
28 ]}
29 ]}
30
31 ]}.
This page took 0.04221 seconds and 4 git commands to generate.