Rack middleware which adds a 16-digit hexidecimal X-Request-Id
header
to the response and into Thread.current[:request_id]
gem 'rack-request-id'
class MyApp < Sinatra::Base
use Rack::RequestId
end
module MyApp
class Application < Rails::Application
# ...
config.middleware.use "Rack::RequestId"
end
end
TODO: proc option to override id format
- 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