Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 327 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 327 Bytes

metric

Simple erlang application that collect metrics. Just a test task for getting new job.

Example of usage:

application:start(metric).
metric_app:report(<<"some_metric1">>, 1).
metric_app:report(<<"some_metric1">>, 2).
metric_app:average(<<"some_metric1">>).

Benchmarking:

metric_benchmark:benchmark().