[Awesome Ruby Gem] Use httplog gem to log outgoing HTTP requests in ruby
httplog
Log outgoing HTTP requests made from your application. Helps with debugging pesky API error responses, or just generally understanding what’s going on under the hood.
Requires ruby >= 2.5
This gem works with the following ruby modules and libraries:
-
Net::HTTP v4+
-
Ethon
-
Excon
-
OpenURI
-
Patron
-
HTTPClient
-
HTTParty
-
HTTP
These libraries are at least partially supported, where they use one of the above as adapters, but not explicitly tested - YMMV:
-
Faraday
-
Typhoeus
In theory, it should also work with any library built on top of these. But the difference between theory and practice is bigger in practice than in theory.
This is very much a development and debugging tool; it is not recommended to use this in a production environment as it is monkey-patching the respective HTTP implementations. You have been warned - use at your own risk.
Installation
You can install it as a gem:
1 | gem install httplog |
or add it into a Gemfile (Bundler):
1 | # Gemfile |
Then, run bundle install
.
1 | bundle install |
Usage
1 | require 'httplog' # require this *after* your HTTP gem of choice |
By default, this will log all outgoing HTTP requests and their responses to $stdout
on DEBUG
level.
Notes on content types
-
Binary data from response bodies (as indicated by the Content-Type header)is not logged.
-
Text data (text/* and most application/* types) is encoded as UTF-8, with invalid characters replaced. If you need to inspect raw non-UTF data exactly as sent over the wire, this tool is probably not for you.
Configuration
If you want to use this in a Rails app, I’d suggest configuring this specifically for each environment. A global initializer is not a good idea since HttpLog will be undefined in production. Because you’re not using this in production, right? :)
You can override the following default options:
1 | HttpLog.configure do |config| |
You can colorize the output to make it stand out in your logfile, either with a single color for the text:
1 | HttpLog.configure do |config| |
Or with a color hash for text and background:
1 | HttpLog.configure do |config| |
For more color options please refer to the rainbow documentation
See Configuration - https://github.com/trusche/httplog#configuration to learn more.
Examples
With the default configuration, the log output might look like this:
1 | [httplog] Connecting: localhost:80 |
With log_headers = true
and a parameter ‘password’ in the request query and headers:
1 | [httplog] Connecting: localhost:80 |
Compact logging
If the log is too noisy for you, but you don’t want to completely disable it either, set the compact_log
option to true
. This will log each request in a single line with method, request URI, response status and time, but no data or headers. No need to disable any other options individually.
1 | [httplog] GET http://localhost:9292/index.html completed with status code 200 in 0.00057 seconds |
JSON logging
If you want to log HTTP requests in a JSON format, set the json_log
option to true
. You can combine this with compact_log to only log the basic request metrics without headers and bodies.
1 | With json_log enabled: |
Parameter filtering
Just like in Rails, you can filter the values of sensitive parameters by setting the filter_parameters
to an array of (lower case) keys. The value for “password” is filtered by default.
Please note that this will only filter the request data with well-formed parameters (in the URL, the headers, and the request data) but not the response. It does not currently filter JSON request data either, just standard “key=value” pairs in the request body.
References
[1] trusche/httplog: Log outgoing HTTP requests in ruby - https://github.com/trusche/httplog
[2] httplog | RubyGems.org | your community gem host - https://rubygems.org/gems/httplog/