Replace the HoneybadgerNoticeFilter that emailed raw stacktraces on every exception with ErrorTracker for self-hosted error tracking. Honeybadger itself is retained. ErrorTracker dashboard is mounted at /admin/errors behind the superuser auth wall.
6 lines
188 B
Elixir
6 lines
188 B
Elixir
defmodule Towerops.Repo.Migrations.AddErrorTracker do
|
|
use Ecto.Migration
|
|
|
|
def up, do: ErrorTracker.Migration.up(version: 5)
|
|
def down, do: ErrorTracker.Migration.down(version: 1)
|
|
end
|