Packages

Simple netflow to prometheus converter and pre-analyzer

Current section

Files

Jump to
erlflow src erlflow_app.erl
Raw

src/erlflow_app.erl

%%%-------------------------------------------------------------------
%% @doc erlflow public API
%% @end
%%%-------------------------------------------------------------------
-module(erlflow_app).
-behaviour(application).
-export([start/2, stop/1]).
start(_StartType, _StartArgs) ->
erlflow_sup:start_link().
stop(_State) ->
ok.
%% internal functions