-
-
Save jnaadjie/6b0e42ac81808d964297722a25ef00f6 to your computer and use it in GitHub Desktop.
Outputting Rails app logs to Logz.io via logstash
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 characters
| gem "lograge" | |
| gem "logstash-event" | |
| gem "logstash-logger" |
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 characters
| 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment