Behaviours: gen_server.
capture/3 | Starts capturing args and results from function calls that lasted longer than specified time threshold. |
capture_stop/1 | |
code_change/3 | |
data/2 | Returns histogram data for seconds that occured after FromEpoch. |
get_captured_data/2 | |
handle_call/3 | |
handle_cast/2 | |
handle_info/2 | |
init/1 | |
start_link/1 | Starts new process registered localy. |
terminate/2 | |
trace_mfa_off/1 |
capture(MFA::xprof:mfa_id(), Threshold::non_neg_integer(), Limit::non_neg_integer()) -> {ok, non_neg_integer()}
Starts capturing args and results from function calls that lasted longer than specified time threshold.
capture_stop(MFA::xprof:mfa_id()) -> ok | {error, not_found}
code_change(OldVsn, State, Extra) -> any()
data(MFA::xprof:mfa_id(), FromEpoch::non_neg_integer()) -> [proplists:proplist()] | {error, not_found}
Returns histogram data for seconds that occured after FromEpoch.
get_captured_data(MFA::xprof:mfa_id(), Offset::non_neg_integer()) -> empty | {ok, {Id::non_neg_integer(), Threshold::non_neg_integer(), Limit::non_neg_integer(), OrigLimit::non_neg_integer()}, [any()]}
handle_call(Request, From, State) -> any()
handle_cast(Msg, State) -> any()
handle_info(Info, State) -> any()
init(X1) -> any()
start_link(MFASpec::xprof:mfa_spec()) -> {ok, pid()}
Starts new process registered localy.
terminate(Reason, State) -> any()
trace_mfa_off(MFA::xprof:mfa_id()) -> any()
Generated by EDoc, Dec 12 2017, 10:42:28.