Last active
August 28, 2022 09:06
-
-
Save czj/d6e06e9f19156c124128a1eaaa9707be to your computer and use it in GitHub Desktop.
Revisions
-
czj revised this gist
Jul 24, 2018 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ gem "lograge" gem "logstash-event" gem "logstash-logger" -
czj created this gist
Jul 24, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ LogStashLogger.configure do |config| config.customize_event do |event| event["token"] = "1e23az12e12eza12aze13aez13aez13aez12zae12e123" end end # config/initializers/lograge.rb # OR # config/environments/production.rb Rails.application.configure do config.lograge.enabled = true config.lograge.formatter = Lograge::Formatters::Logstash.new config.lograge.logger = LogStashLogger.new(type: :tcp, host: "listener.logz.io", port: 5050) # Optionnal # config.lograge.keep_original_rails_log = true end