feat: Make the log output format order fixed
This commit is contained in:
parent
6cbad047cd
commit
ce32ea7334
|
@ -48,9 +48,9 @@
|
||||||
-define(TRACE(Level, Tag, Msg, Meta), begin
|
-define(TRACE(Level, Tag, Msg, Meta), begin
|
||||||
case persistent_term:get(?TRACE_FILTER, []) of
|
case persistent_term:get(?TRACE_FILTER, []) of
|
||||||
[] -> ok;
|
[] -> ok;
|
||||||
%% We can't bind filter list to a variablebecause we pollute the calling scope with it.
|
%% We can't bind filter list to a variable because we pollute the calling scope with it.
|
||||||
%% We also don't want to wrap the macro body in a fun
|
%% We also don't want to wrap the macro body in a fun
|
||||||
%% beacause this adds overhead to the happy path.
|
%% because this adds overhead to the happy path.
|
||||||
%% So evaluate `persistent_term:get` twice.
|
%% So evaluate `persistent_term:get` twice.
|
||||||
_ -> emqx_trace:log(persistent_term:get(?TRACE_FILTER, []), Msg, (Meta)#{trace_tag => Tag})
|
_ -> emqx_trace:log(persistent_term:get(?TRACE_FILTER, []), Msg, (Meta)#{trace_tag => Tag})
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -152,7 +152,7 @@ start_link() ->
|
||||||
insert_channel_info(ClientId, Info, Stats) ->
|
insert_channel_info(ClientId, Info, Stats) ->
|
||||||
Chan = {ClientId, self()},
|
Chan = {ClientId, self()},
|
||||||
true = ets:insert(?CHAN_INFO_TAB, {Chan, Info, Stats}),
|
true = ets:insert(?CHAN_INFO_TAB, {Chan, Info, Stats}),
|
||||||
?tp(debug, insert_channel_info, #{client_id => ClientId}),
|
?tp(debug, insert_channel_info, #{clientid => ClientId}),
|
||||||
ok.
|
ok.
|
||||||
|
|
||||||
%% @private
|
%% @private
|
||||||
|
|
|
@ -22,20 +22,49 @@
|
||||||
|
|
||||||
check_config(X) -> logger_formatter:check_config(X).
|
check_config(X) -> logger_formatter:check_config(X).
|
||||||
|
|
||||||
format(#{msg := {report, Report0}, meta := Meta} = Event, Config) when is_map(Report0) ->
|
format(#{msg := {report, ReportMap}, meta := Meta} = Event, Config) when is_map(ReportMap) ->
|
||||||
Report1 = enrich_report_mfa(Report0, Meta),
|
Report = enrich_report(ReportMap, Meta),
|
||||||
Report2 = enrich_report_clientid(Report1, Meta),
|
logger_formatter:format(Event#{msg := {report, Report}}, Config);
|
||||||
Report3 = enrich_report_peername(Report2, Meta),
|
|
||||||
Report4 = enrich_report_topic(Report3, Meta),
|
|
||||||
logger_formatter:format(Event#{msg := {report, Report4}}, Config);
|
|
||||||
format(#{msg := {string, String}} = Event, Config) ->
|
format(#{msg := {string, String}} = Event, Config) ->
|
||||||
format(Event#{msg => {"~ts ", [String]}}, Config);
|
format(Event#{msg => {"~ts ", [String]}}, Config);
|
||||||
|
%% trace
|
||||||
format(#{msg := Msg0, meta := Meta} = Event, Config) ->
|
format(#{msg := Msg0, meta := Meta} = Event, Config) ->
|
||||||
Msg1 = enrich_client_info(Msg0, Meta),
|
Msg1 = enrich_client_info(Msg0, Meta),
|
||||||
Msg2 = enrich_mfa(Msg1, Meta),
|
Msg2 = enrich_mfa(Msg1, Meta),
|
||||||
Msg3 = enrich_topic(Msg2, Meta),
|
Msg3 = enrich_topic(Msg2, Meta),
|
||||||
logger_formatter:format(Event#{msg := Msg3}, Config).
|
logger_formatter:format(Event#{msg := Msg3}, Config).
|
||||||
|
|
||||||
|
enrich_report(ReportRaw, Meta) ->
|
||||||
|
%% clientid and peername always in emqx_conn's process metadata.
|
||||||
|
%% topic can be put in meta using ?SLOG/3, or put in msg's report by ?SLOG/2
|
||||||
|
Topic =
|
||||||
|
case maps:get(topic, Meta, undefined) of
|
||||||
|
undefined -> maps:get(topic, ReportRaw, undefined);
|
||||||
|
Topic0 -> Topic0
|
||||||
|
end,
|
||||||
|
ClientId = maps:get(clientid, Meta, undefined),
|
||||||
|
Peer = maps:get(peername, Meta, undefined),
|
||||||
|
MFA = maps:get(mfa, Meta, undefined),
|
||||||
|
Line = maps:get(line, Meta, undefined),
|
||||||
|
Msg = maps:get(msg, ReportRaw, undefined),
|
||||||
|
lists:foldl(
|
||||||
|
fun
|
||||||
|
({_, undefined}, Acc) -> Acc;
|
||||||
|
(Item, Acc) -> [Item | Acc]
|
||||||
|
end,
|
||||||
|
maps:to_list(maps:without([topic, msg, clientid], ReportRaw)),
|
||||||
|
[
|
||||||
|
{topic, try_format_unicode(Topic)},
|
||||||
|
{clientid, try_format_unicode(ClientId)},
|
||||||
|
{peername, Peer},
|
||||||
|
{line, Line},
|
||||||
|
{mfa, mfa(MFA)},
|
||||||
|
{msg, Msg}
|
||||||
|
]
|
||||||
|
).
|
||||||
|
|
||||||
|
try_format_unicode(undefined) ->
|
||||||
|
undefined;
|
||||||
try_format_unicode(Char) ->
|
try_format_unicode(Char) ->
|
||||||
List =
|
List =
|
||||||
try
|
try
|
||||||
|
@ -53,30 +82,6 @@ try_format_unicode(Char) ->
|
||||||
_ -> List
|
_ -> List
|
||||||
end.
|
end.
|
||||||
|
|
||||||
enrich_report_mfa(Report, #{mfa := Mfa, line := Line}) ->
|
|
||||||
Report#{mfa => mfa(Mfa), line => Line};
|
|
||||||
enrich_report_mfa(Report, _) ->
|
|
||||||
Report.
|
|
||||||
|
|
||||||
enrich_report_clientid(Report, #{clientid := ClientId}) ->
|
|
||||||
Report#{clientid => try_format_unicode(ClientId)};
|
|
||||||
enrich_report_clientid(Report, _) ->
|
|
||||||
Report.
|
|
||||||
|
|
||||||
enrich_report_peername(Report, #{peername := Peername}) ->
|
|
||||||
Report#{peername => Peername};
|
|
||||||
enrich_report_peername(Report, _) ->
|
|
||||||
Report.
|
|
||||||
|
|
||||||
%% clientid and peername always in emqx_conn's process metadata.
|
|
||||||
%% topic can be put in meta using ?SLOG/3, or put in msg's report by ?SLOG/2
|
|
||||||
enrich_report_topic(Report, #{topic := Topic}) ->
|
|
||||||
Report#{topic => try_format_unicode(Topic)};
|
|
||||||
enrich_report_topic(Report = #{topic := Topic}, _) ->
|
|
||||||
Report#{topic => try_format_unicode(Topic)};
|
|
||||||
enrich_report_topic(Report, _) ->
|
|
||||||
Report.
|
|
||||||
|
|
||||||
enrich_mfa({Fmt, Args}, #{mfa := Mfa, line := Line}) when is_list(Fmt) ->
|
enrich_mfa({Fmt, Args}, #{mfa := Mfa, line := Line}) when is_list(Fmt) ->
|
||||||
{Fmt ++ " mfa: ~ts line: ~w", Args ++ [mfa(Mfa), Line]};
|
{Fmt ++ " mfa: ~ts line: ~w", Args ++ [mfa(Mfa), Line]};
|
||||||
enrich_mfa(Msg, _) ->
|
enrich_mfa(Msg, _) ->
|
||||||
|
|
|
@ -237,7 +237,7 @@ do_async_set_keepalive() ->
|
||||||
{ok, _} = ?block_until(
|
{ok, _} = ?block_until(
|
||||||
#{
|
#{
|
||||||
?snk_kind := insert_channel_info,
|
?snk_kind := insert_channel_info,
|
||||||
client_id := ClientID
|
clientid := ClientID
|
||||||
},
|
},
|
||||||
2000,
|
2000,
|
||||||
100
|
100
|
||||||
|
|
Loading…
Reference in New Issue