discourse/config/initializers/logster.rb

58 lines
1.8 KiB
Ruby
Raw Normal View History

if Rails.env.production?
Logster.store.ignore = [
# honestly, Rails should not be logging this, its real noisy
/^ActionController::RoutingError \(No route matches/,
/^PG::Error: ERROR:\s+duplicate key/,
2014-08-18 11:10:22 +08:00
/^ActionController::UnknownFormat/,
/^AbstractController::ActionNotFound/,
2015-05-06 14:59:41 +08:00
# alihack is really annoying, nothing really we can do about this
# (795: unexpected token at 'alihack<%eval request("alihack.com")%> '):
/^ActionDispatch::ParamsParser::ParseError/,
# ignore any empty JS errors that contain blanks or zeros for line and column fields
#
# Line:
# Column:
#
/(?m).*?Line: (?:\D|0).*?Column: (?:\D|0)/,
2015-01-17 09:28:50 +08:00
2015-05-07 08:42:21 +08:00
# CSRF errors are not providing enough data
# suppress unconditionally for now
2015-05-19 07:32:27 +08:00
/^Can't verify CSRF token authenticity$/,
# 404s can be dealt with elsewise
/^ActiveRecord::RecordNotFound /,
# bad asset requested, no need to log
2015-08-18 14:46:01 +08:00
/^ActionController::BadRequest /,
# hotlinked image error that is pointless
/^Failed to pull hotlinked image.*404 Not Found/m
]
end
# middleware that logs errors sits before multisite
# we need to establish a connection so redis connection is good
# and db connection is good
Logster.config.current_context = lambda{|env,&blk|
begin
if Rails.configuration.multisite
request = Rack::Request.new(env)
ActiveRecord::Base.connection_handler.clear_active_connections!
RailsMultisite::ConnectionManagement.establish_connection(:host => request['__ws'] || request.host)
end
blk.call
ensure
ActiveRecord::Base.connection_handler.clear_active_connections!
end
}
# TODO logster should be able to do this automatically
Logster.config.subdirectory = "#{GlobalSetting.relative_url_root}/logs"
2015-08-17 14:54:44 +08:00
Logster.config.application_version = Discourse.git_version