Adding custom fields to Honeycomb traces in Rails by writing a Rack middleware
In our Rails app, installing the Honeycomb beeline magically gave us traces of all HTTP requests, with dozens of useful fields like ‘request.path’ and ‘response.status_code’. I really wanted the request verb (GET or POST) and I couldn’t find that. (It’s there, in ‘request.method’, I missed it. But still, it’s useful to know how to a …
Read moreAdding custom fields to Honeycomb traces in Rails by writing a Rack middleware