https://github.com/jechol/rail_sentry
https://github.com/jechol/rail_sentry
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/jechol/rail_sentry
- Owner: jechol
- License: mit
- Created: 2023-06-29T01:57:26.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T08:58:59.000Z (over 2 years ago)
- Last Synced: 2025-03-23T23:39:17.058Z (about 1 year ago)
- Language: Elixir
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RailSentry
Rail error reporter for Sentry
## Installation
```elixir
def deps do
[
{:rail_sentry, "~> 0.1.0"}
]
end
```
Config globally
```elixir
config :rail, :error_reporter, RailSentry
```
or only for current process.
```elixir
Process.put(:rail_error_reporter, RailSentry)
```