No commit activity in last 3 years
No release in over 3 years
Rack middleware to set custom skylight.io endpoints for specific paths.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 10.0
~> 3.1

Runtime

~> 1.6
~> 0.8
 Project Readme

Build Status

Rack::SkylightEndpoint

Rack middleware to set custom skylight.io endpoints for specific paths. I'm using it to ignore Rack based health check responses in skylight. It is based on teodor-pripoae's suggestion.

WARNING: Uses skylights private API.

Installation

Add this line to your application's Gemfile:

gem 'rack-skylight-endpoint'

And then execute:

$ bundle

Customization

use Rack::SkylightEndpoint, path: '/healthcheck', endpoint: 'healthcheck'

Add this to your skylight config:

ignored_endpoints:
  - healthcheck

Development

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

Contributing

  1. Fork it ( https://github.com/elitau/rack-skylight-endpoint/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request