Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elixir-addicts/rollbax
Exception tracking and logging from Elixir to Rollbar
https://github.com/elixir-addicts/rollbax
elixir rollbar
Last synced: 3 months ago
JSON representation
Exception tracking and logging from Elixir to Rollbar
- Host: GitHub
- URL: https://github.com/elixir-addicts/rollbax
- Owner: ForzaElixir
- License: isc
- Created: 2015-08-04T10:21:26.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-08-01T16:05:29.000Z (3 months ago)
- Last Synced: 2024-08-03T12:02:01.987Z (3 months ago)
- Topics: elixir, rollbar
- Language: Elixir
- Homepage: https://hexdocs.pm/rollbax
- Size: 157 KB
- Stars: 243
- Watchers: 8
- Forks: 52
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-elixir - rollbax - Exception tracking and logging to [Rollbar](https://rollbar.com/). (Logging)
- fucking-awesome-elixir - rollbax - Exception tracking and logging to [Rollbar](https://rollbar.com/). (Logging)
- freaking_awesome_elixir - Elixir - Exception tracking and logging to [Rollbar](https://rollbar.com/). (Logging)
README
# Rollbax
[![Build Status](https://travis-ci.org/ForzaElixir/rollbax.svg?branch=master "Build Status")](https://travis-ci.org/ForzaElixir/rollbax)
[![Hex Version](https://img.shields.io/hexpm/v/rollbax.svg "Hex Version")](https://hex.pm/packages/rollbax)Elixir client for [Rollbar](https://rollbar.com).
## Installation
Add Rollbax as a dependency to your `mix.exs` file:
```elixir
defp deps() do
[{:rollbax, ">= 0.0.0"}]
end
```Then run `mix deps.get` in your shell to fetch the dependencies. Add `:rollbax` to your list of `:applications` if you're not using `:extra_applications`.
## Usage
Rollbax requires some configuration in order to work. For example, in `config/config.exs`:
```elixir
config :rollbax,
access_token: "ffb8056a621f309eeb1ed87fa0c7",
environment: "production"
```Then, exceptions (errors, exits, and throws) can be reported to Rollbar using `Rollbax.report/3`:
```elixir
try do
DoesNotExist.for_sure()
rescue
exception ->
Rollbax.report(:error, exception, System.stacktrace())
end
```For detailed information on configuration and usage, take a look at the [online documentation](http://hexdocs.pm/rollbax).
### Crash reports
Rollbax provides a way to automatically report crashes from OTP processes (GenServers, Tasks, and so on). It can be enabled with:
```elixir
config :rollbax, enable_crash_reports: true
```For more information, check out the documentation for [`Rollbax.Logger`](http://hexdocs.pm/rollbax/Rollbax.Logger.html).
If you had previously configured `Rollbax.Logger` to be a Logger backend (for example `config :logger, backends: [Rollbax.Logger]`), you will need to remove since `Rollbax.Logger` is not a Logger backend anymore and you will get crashes if you use it as such.### Plug and Phoenix
For examples on how to take advantage of Rollbax in Plug-based applications (including Phoenix applications), have a look at the ["Using Rollbax in Plug-based applications" page in the documentation](http://hexdocs.pm/rollbax/using-rollbax-in-plug-based-applications.html).
### Non-production reporting
For non-production environments error reporting can be either disabled completely (by setting `:enabled` to `false`) or replaced with logging of exceptions (by setting `:enabled` to `:log`).
```elixir
config :rollbax, enabled: :log
```### Using a proxy to reach the Rollbar server
For environments which require a proxy to connect to hosts outside of the network, the `:proxy` config entry can be added with a proxy URL as it's defined in the [hackney documentation](https://github.com/benoitc/hackney#proxy-a-connection).
```elixir
config :rollbax, proxy: "https://my-secure-proxy:5001"
```## Contributing
To run tests, run `$ mix test --no-start`. The `--no-start` bit is important so that tests don't fail (because of the `:rollbax` application being started without an `:access_token` specifically).
When making changes to the code, adhere to this [Elixir style guide](https://github.com/lexmag/elixir-style-guide).
Finally, thanks for contributing! :)
## License
This software is licensed under [the ISC license](LICENSE).