From 369087e8a6b2d8ef20916b08067beea0544df30f Mon Sep 17 00:00:00 2001 From: Gonzalo <456459+grzuy@users.noreply.github.com> Date: Mon, 16 Sep 2024 14:15:03 -0300 Subject: [PATCH] docs: links to tower_sentry --- README.md | 2 ++ lib/tower.ex | 2 ++ lib/tower/reporter.ex | 1 + 3 files changed, 5 insertions(+) diff --git a/README.md b/README.md index 520a448..f94375f 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ Or: - include one (or many) of the following reporters (separate packages) that build on top of and depend on `tower`: - [`tower_email`](https://github.com/mimiquate/tower_email) - [`tower_rollbar`](https://github.com/mimiquate/tower_rollbar) + - [`tower_sentry`](https://github.com/mimiquate/tower_sentry) - [`tower_slack`](https://github.com/mimiquate/tower_slack) - more coming... @@ -137,6 +138,7 @@ or - depend on one (or many) of the following reporters (separate packages) that build on top and depend on `tower`: - [`TowerEmail`](https://hexdocs.pm/tower_email) ([`tower_email`](https://hex.pm/packages/tower_email)) - [`TowerRollbar`](https://hexdocs.pm/tower_rollbar) ([`tower_rollbar`](https://hex.pm/packages/tower_rollbar)) + - [`TowerSentry`](https://hexdocs.pm/tower_sentry) ([`tower_sentry`](https://hex.pm/packages/tower_sentry)) - [`TowerSlack`](https://hexdocs.pm/tower_slack) ([`tower_slack`](https://hex.pm/packages/tower_slack)) - and properly set the `config :tower, :reporters, [...]` configuration key diff --git a/lib/tower.ex b/lib/tower.ex index 824739e..89e3ebd 100644 --- a/lib/tower.ex +++ b/lib/tower.ex @@ -12,6 +12,7 @@ defmodule Tower do - include one (or many) of the following reporters (separate packages) that build on top of and depend on `tower`: - [`tower_email`](https://hexdocs.pm/tower_email) - [`tower_rollbar`](https://hexdocs.pm/tower_rollbar) + - [`tower_sentry`](https://hexdocs.pm/tower_sentry) - [`tower_slack`](https://hexdocs.pm/tower_slack) - more coming... @@ -131,6 +132,7 @@ defmodule Tower do - depend on one (or many) of the following reporters (separate packages) that build on top and depend on `tower`: - [`TowerEmail`](https://hexdocs.pm/tower_email) ([`tower_email`](https://hex.pm/packages/tower_email)) - [`TowerRollbar`](https://hexdocs.pm/tower_rollbar) ([`tower_rollbar`](https://hex.pm/packages/tower_rollbar)) + - [`TowerSentry`](https://hexdocs.pm/tower_sentry) ([`tower_sentry`](https://hex.pm/packages/tower_sentry)) - [`TowerSlack`](https://hexdocs.pm/tower_slack) ([`tower_slack`](https://hex.pm/packages/tower_slack)) - and properly set the `config :tower, :reporters, [...]` configuration key diff --git a/lib/tower/reporter.ex b/lib/tower/reporter.ex index 6f9fac2..71197e5 100644 --- a/lib/tower/reporter.ex +++ b/lib/tower/reporter.ex @@ -9,6 +9,7 @@ defmodule Tower.Reporter do * [tower_email](https://hex.pm/packages/tower_email) ([`TowerEmail`](https://hexdocs.pm/tower_email)) * [tower_rollbar](https://hex.pm/packages/tower_rollbar) ([`TowerRollbar`](https://hexdocs.pm/tower_rollbar)) + * [tower_sentry](https://hex.pm/packages/tower_sentry) ([`TowerSentry`](https://hexdocs.pm/tower_sentry)) * [tower_slack](https://hex.pm/packages/tower_slack) ([`TowerSlack`](https://hexdocs.pm/tower_slack)) """