pagexduty alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view pagexduty alternatives based on common mentions on social networks and blogs.
-
gringotts
A complete payment library for Elixir and Phoenix Framework -
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 -
amazon_product_advertising_client
An Amazon Product Advertising API client for Elixir -
pay_pal
:money_with_wings: PayPal REST API client for the Elixir language (elixir-lang) -
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.
Access the most powerful time series database as a service
Do you think we are missing an alternative of pagexduty or a related project?
README
Pagexduty
PagerDuty client for Elixir.
Installing
Add pagexduty as a dependency to your project:
defp deps do
[{:pagexduty, "~> 0.1.0"}]
end
And add pagexduty to applications list:
def application do
[applications: [:pagexduty]]
end
Finally fetch and compile dependency:
mix deps.get
mix deps.compile
Examples
# Create an incident only with a description
Pagexduty.Server.trigger("Something is not right")
# Create an incident with a description and details
Pagexduty.Server.trigger("You know nothing, Server Snow", %{"detail" => "something"})
# Create an incident with a description and incident_key
Pagexduty.Server.trigger("An error occurred", "srv01/HTTP")
# Create a incident with a description, incident_key and details
Pagexduty.Server.trigger("An error occurred", "srv01/HTTP", %{"detail" => "something"})
License
pagexduty is copyright (c) 2015 Ride Group Inc and contributors.
The source code is released under the MIT License.
Check [LICENSE](LICENSE) for more information.
*Note that all licence references and agreements mentioned in the pagexduty README section above
are relevant to that project's source code only.