0.0
Low commit activity in last 3 years
A long-lived project that still receives updates
Ruby API wrapper for Statuspage.io.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.1, >= 2.1.0
~> 12.3, >= 12.3.3
~> 3.10.0
~> 1.18
~> 3.13.0

Runtime

~> 0.21
 Project Readme

Build Status Maintainability

Statuspageio

Ruby gem for the Statuspage REST API.

Installation

Add this line to your application's Gemfile:

gem 'statuspageio'

And then execute:

$ bundle

Or install it yourself as:

$ gem install statuspageio

Usage

Initializing a client

client = Statuspageio::Client.new(api_key: '<your_api_key>', page_id: '<your_page_id>')

client.incidents

Incidents

# get a list of all your incidents
client.incidents

# get incidents scoped by their status
client.incidents(:active_maintenance)
client.incidents(:scheduled)
client.incidents(:unresolved)
client.incidents(:upcoming)

# pagination support
client.incidents(limit: 20, page: 2)

# query support
client.incidents(query: 'AWS is down')

# fetch an incident
client.incident(<incident_id>)

# create an incident (see https://developer.statuspage.io for payload options)
client.create_incident(<incident payload>)

# update an incident
client.update_incident(<incident_id>, payload)

# delete an incident
client.delete_incident(<incident_id>)

Subscribers

# get a list of all your subscribers
client.subscribers

# get a list of all your subscribers per incident
client.subscribers(incident_id: <incident_id>)

# query support
client.subscribers(query: 'Albert Einstein')

# create a subscriber (see https://developer.statuspage.io for payload options)
client.create_subscriber(<subscriber payload>)

# delete a subscriber
client.delete_subscriber(<subscriber_id>)

# delete a subscriber for an incident
client.delete_subscriber(<subscriber_id>, incident_id: <incident_id>)

In Rails you can configure using an initializer

config/intializers/statuspage.rb

Statuspageio.configure do |config|
  config.api_key = ENV['STATUSPAGE_API_KEY']
  config.page_id = ENV['STATUSPAGE_PAGE_ID']
end

Development

After checking out the repo, run bin/setup to install dependencies. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/dasnixon/statuspageio.

License

The gem is available as open source under the terms of the MIT License.