2017-07-09 13:49:52 -04:00
|
|
|
# frozen_string_literal: true
|
2017-07-10 09:40:03 -04:00
|
|
|
|
2016-08-06 12:40:07 -04:00
|
|
|
require "active_support/core_ext/string/filters"
|
|
|
|
require "active_support/tagged_logging"
|
|
|
|
require "active_support/logger"
|
2014-05-20 10:02:36 -04:00
|
|
|
|
2014-05-20 07:41:14 -04:00
|
|
|
module ActiveJob
|
2014-09-26 13:10:06 -04:00
|
|
|
module Logging #:nodoc:
|
2014-05-22 13:33:23 -04:00
|
|
|
extend ActiveSupport::Concern
|
2014-05-22 16:38:01 -04:00
|
|
|
|
2014-05-22 13:33:23 -04:00
|
|
|
included do
|
2017-05-31 05:16:20 -04:00
|
|
|
cattr_accessor :logger, default: ActiveSupport::TaggedLogging.new(ActiveSupport::Logger.new(STDOUT))
|
2014-05-22 15:11:21 -04:00
|
|
|
|
2018-02-22 17:58:00 -05:00
|
|
|
around_enqueue do |_, block|
|
2014-05-22 16:38:01 -04:00
|
|
|
tag_logger do
|
|
|
|
block.call
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-22 17:58:00 -05:00
|
|
|
around_perform do |job, block|
|
2014-05-22 16:38:01 -04:00
|
|
|
tag_logger(job.class.name, job.job_id) do
|
2016-08-16 03:30:11 -04:00
|
|
|
payload = { adapter: job.class.queue_adapter, job: job }
|
2014-05-22 16:38:01 -04:00
|
|
|
ActiveSupport::Notifications.instrument("perform_start.active_job", payload.dup)
|
2014-08-12 14:24:19 -04:00
|
|
|
ActiveSupport::Notifications.instrument("perform.active_job", payload) do
|
2014-05-22 16:38:01 -04:00
|
|
|
block.call
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-06-20 15:04:07 -04:00
|
|
|
around_enqueue do |job, block|
|
2014-08-25 10:34:50 -04:00
|
|
|
if job.scheduled_at
|
2018-07-20 15:40:53 -04:00
|
|
|
ActiveSupport::Notifications.instrument("enqueue_at.active_job",
|
|
|
|
adapter: job.class.queue_adapter, job: job, &block)
|
2014-05-22 13:33:23 -04:00
|
|
|
else
|
2018-07-20 15:40:53 -04:00
|
|
|
ActiveSupport::Notifications.instrument("enqueue.active_job",
|
|
|
|
adapter: job.class.queue_adapter, job: job, &block)
|
2014-05-22 13:33:23 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-05-22 16:38:01 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
def tag_logger(*tags)
|
|
|
|
if logger.respond_to?(:tagged)
|
|
|
|
tags.unshift "ActiveJob" unless logger_tagged_by_active_job?
|
2016-08-16 03:30:11 -04:00
|
|
|
logger.tagged(*tags) { yield }
|
2014-05-22 16:38:01 -04:00
|
|
|
else
|
|
|
|
yield
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def logger_tagged_by_active_job?
|
|
|
|
logger.formatter.current_tags.include?("ActiveJob")
|
|
|
|
end
|
2014-05-20 07:41:14 -04:00
|
|
|
end
|
|
|
|
end
|