我正在使用Rails 3.2.12 / Ruby 1.9.3并尝试设置多个记录器,因此我可以将两者记录到文件和我们已设置的graylog服务器。我已经接近使用这个解决方案,但使用了Gelf记录器 - http://railsware.com/blog/2014/08/07/rails-logging-into-several-backends/
所以我已经将ActiveSupport::Logger
移植到我的config / initializers并设置了gelf logger,如下所示
(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
非常感谢任何帮助
答案 0 :(得分:2)
正如@Leons所提到的,同样的问题被报告给项目#26。海报写了一个带有测试用例的补丁,并在问题#27中记录了一个带有修复的pull请求,使add方法的接口与通常的定义相同。
这是在2014年12月22日合并的。从那时起,没有新发布。
我认为最好直接从github repo编译,例如:
$ echo "gem 'gelf', :git => 'https://github.com/Graylog2/gelf-rb.git'" >>Gemfile
$ bundle install
或类似的。
祝你好运。