mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 20:13:31 +03:00
0733efa89e
* Move clear stats functions to Plausible.Purge * Delete both native and imported stats when deleting a site This commit moves the delete site function to the Plausible.Purge module, and fixes a bug where deleted sites could leave dangling imported stats. * Clear sites.stats_start_date after clearing stats This commit fixes a bug where resetting stats left an invalid state of the stats_start_date field, used for GA imports, for example.
51 lines
1.5 KiB
Elixir
51 lines
1.5 KiB
Elixir
defmodule ObanErrorReporter do
|
|
def handle_event([:oban, :job, :exception], measure, %{job: job} = meta, _) do
|
|
extra =
|
|
job
|
|
|> Map.take([:id, :args, :meta, :queue, :worker])
|
|
|> Map.merge(measure)
|
|
|
|
on_job_exception(job)
|
|
|
|
Sentry.capture_exception(meta.reason, stacktrace: meta.stacktrace, extra: extra)
|
|
end
|
|
|
|
def handle_event([:oban, :notifier, :exception], _timing, meta, _) do
|
|
extra = Map.take(meta, ~w(channel payload)a)
|
|
|
|
Sentry.capture_exception(meta.reason, stacktrace: meta.stacktrace, extra: extra)
|
|
end
|
|
|
|
def handle_event([:oban, :plugin, :exception], _timing, meta, _) do
|
|
extra = Map.take(meta, ~w(plugin)a)
|
|
|
|
Sentry.capture_exception(meta.reason, stacktrace: meta.stacktrace, extra: extra)
|
|
end
|
|
|
|
defp on_job_exception(%Oban.Job{
|
|
queue: "google_analytics_imports",
|
|
args: %{"site_id" => site_id},
|
|
state: "executing",
|
|
attempt: attempt,
|
|
max_attempts: max_attempts
|
|
})
|
|
when attempt >= max_attempts do
|
|
site = Plausible.Repo.get(Plausible.Site, site_id)
|
|
|
|
if site do
|
|
Plausible.Workers.ImportGoogleAnalytics.import_failed(site)
|
|
end
|
|
end
|
|
|
|
defp on_job_exception(%Oban.Job{
|
|
queue: "google_analytics_imports",
|
|
args: %{"site_id" => site_id},
|
|
state: "executing"
|
|
}) do
|
|
site = Plausible.Repo.get(Plausible.Site, site_id)
|
|
Plausible.Purge.delete_imported_stats!(site)
|
|
end
|
|
|
|
defp on_job_exception(_job), do: :ignore
|
|
end
|