gitextract_9aka67fi/ ├── .formatter.exs ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ └── elixir.yml ├── .gitignore ├── .tool-versions ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets/ │ ├── bun.lockb │ ├── css/ │ │ └── app.css │ ├── js/ │ │ └── app.js │ ├── package.json │ └── tailwind.config.js ├── config/ │ ├── config.exs │ ├── dev.example.exs │ └── test.example.exs ├── dev.exs ├── guides/ │ └── Getting Started.md ├── lib/ │ ├── error_tracker/ │ │ ├── application.ex │ │ ├── filter.ex │ │ ├── ignorer.ex │ │ ├── integrations/ │ │ │ ├── oban.ex │ │ │ ├── phoenix.ex │ │ │ └── plug.ex │ │ ├── migration/ │ │ │ ├── mysql/ │ │ │ │ ├── v03.ex │ │ │ │ ├── v04.ex │ │ │ │ └── v05.ex │ │ │ ├── mysql.ex │ │ │ ├── postgres/ │ │ │ │ ├── v01.ex │ │ │ │ ├── v02.ex │ │ │ │ ├── v03.ex │ │ │ │ ├── v04.ex │ │ │ │ └── v05.ex │ │ │ ├── postgres.ex │ │ │ ├── sql_migrator.ex │ │ │ ├── sqlite/ │ │ │ │ ├── v02.ex │ │ │ │ ├── v03.ex │ │ │ │ ├── v04.ex │ │ │ │ └── v05.ex │ │ │ └── sqlite.ex │ │ ├── migration.ex │ │ ├── plugins/ │ │ │ └── pruner.ex │ │ ├── repo.ex │ │ ├── schemas/ │ │ │ ├── error.ex │ │ │ ├── occurrence.ex │ │ │ └── stacktrace.ex │ │ ├── telemetry.ex │ │ ├── web/ │ │ │ ├── components/ │ │ │ │ ├── core_components.ex │ │ │ │ ├── layouts/ │ │ │ │ │ ├── live.html.heex │ │ │ │ │ └── root.html.heex │ │ │ │ └── layouts.ex │ │ │ ├── helpers.ex │ │ │ ├── hooks/ │ │ │ │ └── set_assigns.ex │ │ │ ├── live/ │ │ │ │ ├── dashboard.ex │ │ │ │ ├── dashboard.html.heex │ │ │ │ ├── show.ex │ │ │ │ └── show.html.heex │ │ │ ├── router/ │ │ │ │ └── routes.ex │ │ │ ├── router.ex │ │ │ └── search.ex │ │ └── web.ex │ ├── error_tracker.ex │ └── mix/ │ └── tasks/ │ └── error_tracker.install.ex ├── mix.exs ├── priv/ │ ├── repo/ │ │ ├── migrations/ │ │ │ └── 20240527155639_create_error_tracker_tables.exs │ │ └── seeds.exs │ └── static/ │ ├── app.css │ └── app.js └── test/ ├── error_tracker/ │ ├── filter_test.exs │ ├── ignorer_test.exs │ ├── schemas/ │ │ └── occurrence_test.exs │ └── telemetry_test.exs ├── error_tracker_test.exs ├── integrations/ │ └── plug_test.exs ├── support/ │ ├── case.ex │ ├── lite_repo.ex │ ├── mysql_repo.ex │ └── repo.ex └── test_helper.exs