我正在使用Rails 3.2.12 /
Ruby 1.9.3并尝试设置多个记录器,因此我可以将两者记录到文件和我们已设置的graylog服务器.我已经接近使用这个解决方案,但使用了Gelf记录器 –
http://railsware.com/blog/2014/08/07/rails-logging-into-several-backends/
所以我已经将ActiveSupport :: Logger移植到我的配置/初始化器并设置了如下的gelf记录器
(development.rb)
gelf_logger = GELF::Logger.new("greylogserver", 12201, "WAN", { :host => 'host', :facility => "railslog"})
Rails.logger.extend(ActiveSupport::Logger.broadcast(gelf_logger))
但是我发现我只会将错误记录到graylog服务器
ArgumentError: short_message is missing. Options version, short_message and host must be set.
当我调试代码时,我可以看到传递给Gelf Logger add方法的args(下面)总是将第1个元素作为级别,第2个元素是nil而第3个元素包含消息.这是令人困惑的,因为第二个arg应该是消息而第三个应该是预测.我提出的唯一解决方案是通过更改第6行来改变Gelf-rb gem(如下所示)以使用args [1]作为消息然后它可以工作,但是这不是理想的并且必须有一种方法来修复这在我的代码中.
def add(level, *args)
raise ArgumentError.new('Wrong arguments.') unless (0..2).include?(args.count)
# Ruby Logger's author is a maniac.
message, progname = if args.count == 2
[args[1], args[1]]
elsif args.count == 0
[yield, default_options['facility']]
elsif block_given?
[yield, args[0]]
else
[args[0], default_options['facility']]
end
....
只是要注意当我直接设置我的Rails记录器以在development.rb中使用Gelf记录器时,它工作正常
Rails.logger = GELF::Logger.new("greylogserver", 12201, "WAN", { :host => 'host', :facility => "railslog"})
所以它必须与我的ActiveSupport :: Logger的实现有关 – 这是从这里 – https://github.com/rails/rails/blob/6329d9fa8b2f86a178151be264cccdb805bfaaac/activesupport/lib/active_support/logger.rb
任何帮助将非常感激
最佳答案 正如@Leons提到的那样,同样的问题被报告给项目#26.海报写了一个带有测试用例的补丁,并在问题#27中记录了一个pull请求,其中包含一个修复程序,使add方法的接口与通常的定义相同.
这是在2014年12月22日合并的.从那时起,没有新版本发布.
我认为最好直接从github repo编译,例如:
$echo "gem 'gelf', :git => 'https://github.com/Graylog2/gelf-rb.git'" >>Gemfile
$bundle install
或类似的.
祝好运.