Popularity
2.0
Declining
Activity
0.0
Stable
7
1
4
Monthly Downloads: 10
Programming language: Elixir
License: MIT License
Tags:
Third Party APIs
Latest version: v0.4.1
opbeat alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view opbeat alternatives based on common mentions on social networks and blogs.
-
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
sparkpost
SparkPost client library for Elixir https://developers.sparkpost.com -
elixtagram
:camera: Instagram API client for the Elixir language (elixir-lang) -
google_sheets
Elixir library for fetching Google Spreadsheet data in CSV format -
pay_pal
:money_with_wings: PayPal REST API client for the Elixir language (elixir-lang) -
amazon_product_advertising_client
An Amazon Product Advertising API client for Elixir -
cashier
Cashier is an Elixir library that aims to be an easy to use payment gateway, whilst offering the fault tolerance and scalability benefits of being built on top of Erlang/OTP -
elixir_ipfs_api
The Elixir library that is used to communicate with the IPFS REST endpoint.
Learn Elixir in as little as 12 Weeks
A structured learning environment with practical assignments, code reviews, weekly live coaching sessions, job-hunting assistance, and more. Try a Free Preview today!
Promo
learn-elixir.dev
Do you think we are missing an alternative of opbeat or a related project?
README
Opbeat
Elixir client for Opbeat.
Installation
Add module to mix.exs
def application do
[applications: [:logger, :opbeat]]
end
def deps do
[{:opbeat, github: "teodor-pripoae/opbeat"}]
end
Add following settings to config.exs
config :opbeat, :auth,
%{org_id: System.get_env("OPBEAT_ORG_ID"), \
app_id: System.get_env("OPBEAT_APP_ID"), \
app_secret: System.get_env("OPBEAT_APP_SECRET")}
By default Opbeat logging is disabled. You must enabled it for production.exs
or staging.exs
config :opbeat, :enabled, true
Usage
To report and error:
if Opbeat.Client.enabled do
Opbeat.Client.report(e)
end
You can also pass options misc
and extra
as Map
:
Opbeat.Client.report(e, %{mymisc: "Some Value"}, %{myextra: "aaaa"})
TODO
- [ ] add support for http connection info
- [ ] more tests with VCR
- [ ] show more stacktrace information so it can be formatted properly on opbeat
- [ ] make requests with HTTPoison.AsyncResponse