Rack::RequestId
Rack middleware which adds a 16-digit hexidecimal X-Request-Id header
to the response and into Thread.current[:request_id]
Usage
gem 'rack-request-id'
Sinatra
class MyApp < Sinatra::Base
use Rack::RequestId
end
Rails
module MyApp
class Application < Rails::Application
# ...
config.middleware.use "Rack::RequestId"
end
end
Configuration
TODO: proc option to override id format
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request