Commit | Line | Data |
---|---|---|
caf75ed8 SK |
1 | {application, beam_stats, |
2 | [ | |
3 | {description, "Periodic VM stats production and consumption."}, | |
a222ff4d | 4 | {vsn, "0.0.1"}, |
caf75ed8 | 5 | {registered, []}, |
881e328f SK |
6 | {applications, |
7 | [ kernel | |
8 | , stdlib | |
71a4e858 | 9 | , hope |
881e328f | 10 | ]}, |
caf75ed8 SK |
11 | |
12 | {mod, { beam_stats_app, []}}, | |
13 | ||
14 | {env, | |
15 | [ {production_interval , 30000} | |
16 | , {consumers, | |
b545475b | 17 | [ {beam_stats_consumer_statsd, |
a8ac3547 SK |
18 | [ {consumption_interval , 60000} |
19 | , {dst_host , "localhost"} | |
20 | , {dst_port , 8125} | |
21 | , {src_port , 8124} | |
22 | ]} | |
caf75ed8 SK |
23 | ]} |
24 | ]} | |
25 | ||
26 | ]}. |