我是 graylog2 的新手。我安装了 graylog2 和 Web 界面。我正在从其他服务器获取 TCP 系统日志到 graylog 服务器。但我无法将 Rails 日志从其他服务器发送到 Graylog。
在 graylog 服务器中,我正在侦听端口 12201 的 GELF HTTP 日志,并且所有必需的端口都已打开。但我没有得到任何输入到 graylog 服务器。我已将 Rails 记录器配置如下:
#config/environments/staging.rb
config.lograge.enabled = true
config.lograge.log_format = :graylog2
config.logger = GELF::Logger.new("graylogserverexample.com",
12201, "WAN",{
:host => "hostname",
:facility => "railslog"})
任何帮助,将不胜感激。