Last active
August 28, 2022 09:06
-
-
Save czj/d6e06e9f19156c124128a1eaaa9707be to your computer and use it in GitHub Desktop.
Outputting Rails app logs to Logz.io via logstash
This file contains 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 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