Created
May 10, 2012 22:25
-
-
Save gburd/2656289 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-module(timeit). | |
-compile(export_all). | |
%% @doc Dynamically add timing to MFA. There are various types of | |
%% timing. | |
%% | |
%% all - time latency of all calls to MFA | |
%% | |
%% {sample, N, Max} - sample every N calls and stop sampling after Max | |
%% | |
%% {threshold, Millis, Max} - count # of calls where latency is > Millis | |
%% and count # of calls total, thus percentage of calls over threshold | |
timeit(Mod, Fun, Arity, Type) -> | |
Type2 = case Type of | |
{sample, N, Max} -> {sample, {N, Max}, {0, 0, 0}}; | |
{threshold, Millis, Max} -> {threshold, {Millis, Max}, {0, 0}}; | |
{all, Max} -> {all, {0, Max}} | |
end, | |
dbg:tracer(process, {fun trace/2, {orddict:new(), Type2}}), | |
dbg:p(all, call), | |
dbg:tpl(Mod, Fun, Arity, [{'_', [], [{return_trace}]}]). | |
stop() -> dbg:stop_clear(). | |
trace({trace, Pid, call, {Mod, Fun, _}}, {D, {all, {Count, Max}}}) -> | |
D2 = orddict:store({Pid, Mod, Fun}, now(), D), | |
{D2, {all, {Count, Max}}}; | |
trace({trace, Pid, call, {Mod, Fun, _}}, | |
{D, {sample, {N, Max}, {M, K, Total}}}) -> | |
M2 = M+1, | |
Total2 = Total+1, | |
if N == M2 -> | |
D2 = orddict:store({Pid, Mod, Fun}, now(), D), | |
{D2, {sample, {N, Max}, {0, K, Total2}}}; | |
true -> | |
{D, {sample, {N, Max}, {M2, K, Total2}}} | |
end; | |
trace({trace, Pid, call, {Mod, Fun, _}}, | |
{D, {threshold, {Millis, Max}, {Over, Total}}}) -> | |
D2 = orddict:store({Pid, Mod, Fun}, now(), D), | |
{D2, {threshold, {Millis, Max}, {Over, Total+1}}}; | |
trace({trace, Pid, return_from, {Mod, Fun, _}, _Result}, | |
Acc={D, {all, {Count, Max}}}) -> | |
Key = {Pid, Mod, Fun}, | |
case orddict:find(Key, D) of | |
{ok, StartTime} -> | |
Count2 = Count+1, | |
ElapsedUs = timer:now_diff(now(), StartTime), | |
ElapsedMs = ElapsedUs/1000, | |
io:format(user, "~p:~p:~p: ~p ms\n", [Pid, Mod, Fun, ElapsedMs]), | |
if Count2 == Max -> stop(); | |
true -> | |
D2 = orddict:erase(Key, D), | |
{D2, {all, {Count2, Max}}} | |
end; | |
error -> Acc | |
end; | |
trace({trace, Pid, return_from, {Mod, Fun, _}, _Result}, | |
Acc={D, {sample, {N, Max}, {M, K, Total}}}) -> | |
Key = {Pid, Mod, Fun}, | |
case orddict:find(Key, D) of | |
{ok, StartTime} -> | |
K2 = K+1, | |
ElapsedUs = timer:now_diff(now(), StartTime), | |
ElapsedMs = ElapsedUs/1000, | |
io:format(user, "[sample ~p/~p] ~p:~p:~p: ~p ms\n", | |
[K2, Total, Pid, Mod, Fun, ElapsedMs]), | |
if K2 == Max -> stop(); | |
true -> | |
D2 = orddict:erase(Key, D), | |
{D2, {sample, {N, Max}, {M, K2, Total}}} | |
end; | |
error -> Acc | |
end; | |
trace({trace, Pid, return_from, {Mod, Fun, _}, _Result}, | |
Acc={D, {threshold, {Millis, Max}, {Over, Total}}}) -> | |
Key = {Pid, Mod, Fun}, | |
case orddict:find(Key, D) of | |
{ok, StartTime} -> | |
ElapsedUs = timer:now_diff(now(), StartTime), | |
ElapsedMs = ElapsedUs / 1000, | |
if ElapsedMs > Millis -> | |
Over2 = Over+1, | |
io:format(user, "[over threshold ~p, ~p/~p] ~p:~p:~p: ~p ms\n", | |
[Millis, Over2, Total, Pid, Mod, Fun, ElapsedMs]); | |
true -> | |
Over2 = Over | |
end, | |
if Max == Over -> stop(); | |
true -> | |
D2 = orddict:erase(Key, D), | |
{D2, {threshold, {Millis, Max}, {Over2, Total}}} | |
end; | |
error -> Acc | |
end. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
EXAMPLES:
timeit(hanoidb, get, 2, {sample, 10, 100000}).
every 10 calls over the next 100,000 calls to hanoidb:get/2 monitor the time it takes for that call to finish
give me the result
timeit(hanoidb, get, 2, {threashold, 5, 1000}).
watch for calls into hanoidb:get/2 that take longer than 5ms to complete (up to 1000 max)
print out a notice when you see one