Skip to content

Commit d57d31e

Browse files
authored
Merge pull request #6 from esl/telemetry_add_name
Add metric name to the event metadata
2 parents a9205cd + 7f219e2 commit d57d31e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/segmented_cache.erl

+8-2
Original file line numberDiff line numberDiff line change
@@ -61,27 +61,33 @@
6161
%% Raises telemetry event
6262
%% name: [?MODULE, request]
6363
%% measurements: #{hit => boolean(), time => microsecond()}
64+
%% metadata: #{name => atom()}
6465
-spec is_member(name(), term()) -> boolean().
6566
is_member(Name, Key) when is_atom(Name) ->
6667
T1 = erlang:monotonic_time(),
6768
Value = iterate_fun_in_tables(Name, Key, fun ?MODULE:is_member_fun/2),
6869
T2 = erlang:monotonic_time(),
6970
Time = erlang:convert_time_unit(T2 - T1, native, microsecond),
70-
telemetry:execute([?MODULE, request], (measurements())#{time := Time, hit := Value =:= true}),
71+
telemetry:execute([?MODULE, request],
72+
(measurements())#{time := Time, hit := Value =:= true},
73+
#{name => Name}),
7174
Value.
7275

7376
%% @doc Get the entry for Key in cache
7477
%%
7578
%% Raises telemetry event
7679
%% name: [?MODULE, request]
7780
%% measurements: #{hit => boolean(), time => microsecond()}
81+
%% metadata: #{name => atom()}
7882
-spec get_entry(name(), term()) -> term() | not_found.
7983
get_entry(Name, Key) when is_atom(Name) ->
8084
T1 = erlang:monotonic_time(),
8185
Value = iterate_fun_in_tables(Name, Key, fun ?MODULE:get_entry_fun/2),
8286
T2 = erlang:monotonic_time(),
8387
Time = erlang:convert_time_unit(T2 - T1, native, microsecond),
84-
telemetry:execute([?MODULE, request], (measurements())#{time := Time, hit := Value =/= not_found}),
88+
telemetry:execute([?MODULE, request],
89+
(measurements())#{time := Time, hit := Value =/= not_found},
90+
#{name => Name}),
8591
Value.
8692

8793
%% @doc Add an entry to the first table in the segments.

0 commit comments

Comments
 (0)