Packages

Erlang library for sending metrics to New Relic.

Current section

Files

Jump to
newrelic src newrelic_app.erl
Raw

src/newrelic_app.erl

-module(newrelic_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1]).
%% ===================================================================
%% Application callbacks
%% ===================================================================
start(_StartType, _StartArgs) ->
application:start(sasl),
application:start(crypto),
application:start(public_key),
application:start(ssl),
application:start(lhttpc),
newrelic_sup:start_link().
stop(_State) ->
ok.