Log Ecto queries > 500ms

This commit is contained in:
Alex Gleason 2021-12-05 17:46:56 -05:00
parent 0b2119d4a7
commit 949a53e327
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 43 additions and 2 deletions

View File

@ -12,10 +12,16 @@ defmodule Pleroma.Telemetry.Logger do
[:pleroma, :connection_pool, :reclaim, :stop],
[:pleroma, :connection_pool, :provision_failure],
[:pleroma, :connection_pool, :client, :dead],
[:pleroma, :connection_pool, :client, :add]
[:pleroma, :connection_pool, :client, :add],
[:pleroma, :repo, :query]
]
def attach do
:telemetry.attach_many("pleroma-logger", @events, &handle_event/4, [])
:telemetry.attach_many(
"pleroma-logger",
@events,
&Pleroma.Telemetry.Logger.handle_event/4,
[]
)
end
# Passing anonymous functions instead of strings to logger is intentional,
@ -91,4 +97,39 @@ defmodule Pleroma.Telemetry.Logger do
end
def handle_event([:pleroma, :connection_pool, :client, :add], _, _, _), do: :ok
def handle_event(
[:pleroma, :repo, :query] = _name,
%{query_time: query_time} = _measurements,
%{source: source, query: query} = _metadata,
_config
)
when query_time > 500_000 and source not in [nil, "oban_jobs"] do
{:current_stacktrace, stacktrace} = Process.info(self(), :current_stacktrace)
stacktrace =
Enum.filter(stacktrace, fn
{__MODULE__, _, _, _} ->
false
{mod, _, _, _} ->
mod
|> to_string()
|> String.starts_with?("Elixir.Pleroma.")
end)
Logger.warn(fn ->
"""
Query took longer than 500ms!
Total time: #{query_time / 1_000}ms
#{inspect(query)}
#{inspect(stacktrace, pretty: true)}
"""
end)
end
def handle_event([:pleroma, :repo, :query], _measurements, _metadata, _config), do: :ok
end