Jeff Blake
Jeff Blake
FYI I don't think the stale tracer is the cause here. In the Sidekiq source, https://github.com/mperham/sidekiq/blob/master/lib/sidekiq/processor.rb#L161 You can see that the logging of jobs (JobLogger) "wraps" the middleware, which means...
@marcotc Your analysis seems spot on. The sidekiq creator acknowledged this when I brought it up, but expressed no interest to go back to logging being a middleware (which is...
Rails 7.0.1 Scout 5.1.1 It's happening on one endpoint, the actioncable mount path, all of the logs look like this: `at=error code=H15 desc="Idle connection" method=GET path="/cable" host=app.*.com request_id=c1977422-d02f-4d5e-8b1c-06f9eecd7b84 fwd="x.x.x.x" dyno=web.1...
+1, as shown here: https://getbootstrap.com/docs/4.0/components/forms/#form-grid Form grid's don't use `form-group` wrappers
Rather than creating and retaining all those tempfiles, possibly ballooning your memory, you can just write the data directly to the zip file, and call `commit` on each loop Something...
I did some more poking around and came up with these diagrams. I'm pretty sure I can wire it like in the last photo and delete the timer?  
Bump.... For example, I prefix all my sources by: `[environment].[process_type].server.worker` e.g. `production.web.1.10` This way I can have a single Librato account and use it for both staging and production environments.
Thanks Joseph. I came up with this shortly before your comment, ``` production: user: token: source: ``` This seemed like the easiest way to take care of the automatic rails...
In fact, it would be nice to use the `librato-rack-source_prefix` gem, as I use other gems that integrate Librato reporting, however it does not support the Heroku `ENV['DYNO']` name. So...
Would be great to get this merged