Skip to content

Simple Rack middleware to log the heroku request id and write it to the end of html requests. Both optionally, of course.

License

Notifications You must be signed in to change notification settings

Octo-Labs/heroku-request-id

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HerokuRequestId

Simple Rack middleware to log the heroku request id and write it to the end of html requests. Both optionally, of course.

Gem Version Build Status Code Climate Coverage Status Dependency Status

Installation

Add this line to your application's Gemfile:

gem 'heroku-request-id'

And then execute:

$ bundle

Or install it yourself as:

$ gem install heroku-request-id

Usage

By default the gem will print a log line to the Heroku logs containing the request id and the elapsed time taken processing the request. You can disable the log line by putting this in an initializer.

  HerokuRequestId::Middleware.log_line = false

You can configure the gem to add a comment to the beginning of html requests by adding this to an initializer.

  HerokuRequestId::Middleware.html_comment = true

You can also configure the gem to copy the HTTP_HEROKU_REQUEST_ID header, which is set by heroku, into the HTTP_X_REQUEST_ID header, which is used by ActionDispatch:: RequestId.

  HerokuRequestId::Middleware.x_request_id_replication = true

Contributing

  1. Fork it
  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 new Pull Request

About

Simple Rack middleware to log the heroku request id and write it to the end of html requests. Both optionally, of course.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages