0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 20:30:23 +00:00

Add a 'profile' environment variable to start a profiler when the app starts.

This commit is contained in:
Loïc Hoguin 2011-06-06 14:26:47 +02:00
parent 2fa1e53928
commit b00dd6fba2

View file

@ -15,7 +15,7 @@
-module(cowboy_app). -module(cowboy_app).
-behaviour(application). -behaviour(application).
-export([start/2, stop/1]). %% API. -export([start/2, stop/1, profile_output/0]). %% API.
-type application_start_type() :: normal -type application_start_type() :: normal
| {takeover, node()} | {failover, node()}. | {takeover, node()} | {failover, node()}.
@ -24,8 +24,29 @@
-spec start(application_start_type(), any()) -> {ok, pid()}. -spec start(application_start_type(), any()) -> {ok, pid()}.
start(_Type, _Args) -> start(_Type, _Args) ->
consider_profiling(),
cowboy_sup:start_link(). cowboy_sup:start_link().
-spec stop(any()) -> ok. -spec stop(any()) -> ok.
stop(_State) -> stop(_State) ->
ok. ok.
-spec profile_output() -> ok.
profile_output() ->
eprof:stop_profiling(),
eprof:log("procs.profile"),
eprof:analyze(procs),
eprof:log("total.profile"),
eprof:analyze(total).
%% Internal.
-spec consider_profiling() -> profiling | not_profiling.
consider_profiling() ->
case application:get_env(profile) of
{ok, true} ->
eprof:start(),
eprof:start_profiling([self()]);
_ ->
not_profiling
end.