2014-05-07 02:55:24 -04:00
|
|
|
if Rails.env.production?
|
2014-08-06 20:30:12 -04:00
|
|
|
Logster.store.ignore = [
|
|
|
|
# honestly, Rails should not be logging this, its real noisy
|
|
|
|
/^ActionController::RoutingError \(No route matches/,
|
2014-08-05 02:14:10 -04:00
|
|
|
|
2014-08-06 20:30:12 -04:00
|
|
|
/^PG::Error: ERROR:\s+duplicate key/,
|
2014-08-05 02:14:10 -04:00
|
|
|
|
2014-08-17 23:10:22 -04:00
|
|
|
/^ActionController::UnknownFormat/,
|
2016-02-23 23:57:36 -05:00
|
|
|
/^ActionController::UnknownHttpMethod/,
|
2015-05-06 02:21:59 -04:00
|
|
|
/^AbstractController::ActionNotFound/,
|
2015-01-17 02:30:06 -05:00
|
|
|
# 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-16 20:28:50 -05:00
|
|
|
|
2016-08-29 03:47:11 -04:00
|
|
|
# suppress empty JS errors (covers MSIE 9, etc)
|
|
|
|
/^(Syntax|Script) error.*Line: (0|1)\b/m,
|
2015-08-18 03:05:55 -04:00
|
|
|
|
2015-05-06 20:42:21 -04:00
|
|
|
# CSRF errors are not providing enough data
|
|
|
|
# suppress unconditionally for now
|
2017-09-04 06:03:45 -04:00
|
|
|
/^Can't verify CSRF token authenticity.$/,
|
2015-05-18 19:32:27 -04:00
|
|
|
|
2016-06-09 19:38:41 -04:00
|
|
|
# Yandex bot triggers this JS error a lot
|
|
|
|
/^Uncaught ReferenceError: I18n is not defined/,
|
|
|
|
|
|
|
|
# related to browser plugins somehow, we don't care
|
|
|
|
/Error calling method on NPObject/,
|
|
|
|
|
|
|
|
# 404s can be dealt with elsewhere
|
|
|
|
/^ActiveRecord::RecordNotFound/,
|
2015-05-26 23:46:15 -04:00
|
|
|
|
|
|
|
# bad asset requested, no need to log
|
2017-11-30 02:29:19 -05:00
|
|
|
/^ActionController::BadRequest/,
|
|
|
|
|
|
|
|
# we can't do anything about invalid parameters
|
2017-12-11 01:52:48 -05:00
|
|
|
/Rack::QueryParser::InvalidParameterError/,
|
|
|
|
|
|
|
|
# we handle this cleanly in the message bus middleware
|
|
|
|
# no point logging to logster
|
|
|
|
/RateLimiter::LimitExceeded.*/m
|
2014-08-06 20:30:12 -04:00
|
|
|
]
|
2014-05-07 02:55:24 -04:00
|
|
|
end
|
2014-05-24 08:50:39 -04:00
|
|
|
|
|
|
|
# middleware that logs errors sits before multisite
|
|
|
|
# we need to establish a connection so redis connection is good
|
|
|
|
# and db connection is good
|
2017-07-27 21:20:09 -04:00
|
|
|
Logster.config.current_context = lambda { |env, &blk|
|
2014-05-24 08:50:39 -04:00
|
|
|
begin
|
|
|
|
if Rails.configuration.multisite
|
|
|
|
request = Rack::Request.new(env)
|
|
|
|
ActiveRecord::Base.connection_handler.clear_active_connections!
|
2017-07-27 21:20:09 -04:00
|
|
|
RailsMultisite::ConnectionManagement.establish_connection(host: request['__ws'] || request.host)
|
2014-05-24 08:50:39 -04:00
|
|
|
end
|
|
|
|
blk.call
|
|
|
|
ensure
|
|
|
|
ActiveRecord::Base.connection_handler.clear_active_connections!
|
|
|
|
end
|
|
|
|
}
|
2015-03-08 20:45:36 -04:00
|
|
|
|
|
|
|
# TODO logster should be able to do this automatically
|
|
|
|
Logster.config.subdirectory = "#{GlobalSetting.relative_url_root}/logs"
|
2015-08-17 02:54:44 -04:00
|
|
|
|
|
|
|
Logster.config.application_version = Discourse.git_version
|
2016-02-17 03:44:53 -05:00
|
|
|
|
2016-03-08 03:33:13 -05:00
|
|
|
store = Logster.store
|
2016-02-17 03:44:53 -05:00
|
|
|
redis = Logster.store.redis
|
2016-03-08 03:33:13 -05:00
|
|
|
store.redis_prefix = Proc.new { redis.namespace }
|
|
|
|
store.redis_raw_connection = redis.without_namespace
|
|
|
|
severities = [Logger::WARN, Logger::ERROR, Logger::FATAL, Logger::UNKNOWN]
|
|
|
|
|
|
|
|
RailsMultisite::ConnectionManagement.each_connection do
|
2016-03-24 11:12:38 -04:00
|
|
|
error_rate_per_minute = SiteSetting.alert_admins_if_errors_per_minute rescue 0
|
2016-03-21 03:17:11 -04:00
|
|
|
|
2016-03-24 11:14:17 -04:00
|
|
|
if (error_rate_per_minute || 0) > 0
|
2016-03-08 03:33:13 -05:00
|
|
|
store.register_rate_limit_per_minute(severities, error_rate_per_minute) do |rate|
|
2017-07-27 21:20:09 -04:00
|
|
|
MessageBus.publish("/logs_error_rate_exceeded", rate: rate, duration: 'minute', publish_at: Time.current.to_i)
|
2016-03-08 03:33:13 -05:00
|
|
|
end
|
|
|
|
end
|
2016-02-17 03:44:53 -05:00
|
|
|
|
2016-03-24 11:12:38 -04:00
|
|
|
error_rate_per_hour = SiteSetting.alert_admins_if_errors_per_hour rescue 0
|
2016-03-21 03:17:11 -04:00
|
|
|
|
2016-03-24 11:14:17 -04:00
|
|
|
if (error_rate_per_hour || 0) > 0
|
2016-03-08 03:33:13 -05:00
|
|
|
store.register_rate_limit_per_hour(severities, error_rate_per_hour) do |rate|
|
2017-07-27 21:20:09 -04:00
|
|
|
MessageBus.publish("/logs_error_rate_exceeded", rate: rate, duration: 'hour', publish_at: Time.current.to_i)
|
2016-02-17 03:44:53 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-09-15 11:50:34 -04:00
|
|
|
|
|
|
|
if Rails.configuration.multisite
|
2016-11-13 22:39:19 -05:00
|
|
|
chained = Rails.logger.instance_variable_get(:@chained)
|
|
|
|
chained && chained.first.formatter = RailsMultisite::Formatter.new
|
2016-09-15 11:50:34 -04:00
|
|
|
end
|