lograge
lograge copied to clipboard
An attempt to tame Rails' default policy to log everything.
We are using this gem currently, but we want to migrate away from ActionCable in-favor of AnyCable, but when this gem it doesn't allow us to since AnyCable uses a...
That method is defined 5 lines below.
I was looking into how `lograge` is interacting with `Rails::Rack::Logger` and noticed that the overrides for `#call_app` are losing calls to `ActiveSupport::Notifications.instrumenter` for the `request.action_dispatch` notification. It looks like this...
Hi! Thanks for this awesome gem! I noticed that PRs are not being merged, so I added the project to my [list of gems needing contributors](https://github.com/caonUlisses/ruby_attic). If the project is...
Hello, I am currently try to use `lograge` and `logdna-rails` in my application, `logdna-rails` can send the log to the cloud platform. At first I am using the setting like...
From the README.md: "However, the payload does already contain the params hash, so you can easily add it in manually using custom_options:" Should that read "However, the payload does **NOT**...
Hi @roidrage, I see that `Gemfile` reference a repo branch https://github.com/roidrage/lograge/blob/1729eab7956bb95c5992e4adab251e4f93ff9280/Gemfile#L14 However, their is a library called `logstash-event` on _rubyforge_. Why `logstash-event` is loaded from github ? Regards,
At the moment: - Requests that get handled by Rack middleware are not logged by lograge, which leads to situations where you can have invisible requests hitting your app -...
https://github.com/roidrage/lograge/blob/1729eab7956bb95c5992e4adab251e4f93ff9280/lib/lograge/log_subscribers/action_controller.rb#L61 Rails log by default logs url+query param for redirect. Any specific reason why we are striping it?
`Rails::Railtie` depends on an [`inherited` hook](https://github.com/rails/rails/blob/v6.0.3.4/railties/lib/rails/railtie.rb#L133-L137) to build the list of Railtie classes ([`Rails::Railties`](https://github.com/rails/rails/blob/v6.0.3.4/railties/lib/rails/engine/railties.rb), [`Rails::Engine.railties`](https://github.com/rails/rails/blob/v6.0.3.4/railties/lib/rails/engine.rb#L486-L488)) that should be initialized and/or invoked at runtime (see [this section](https://github.com/rails/rails/blob/v6.0.3.4/railties/lib/rails/application.rb#L516-L575) in `Rails::Application`). Because this...