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
|
|
|
|
|
2016-08-06 13:55:02 -04:00
|
|
|
class LogSubscriber < ActiveSupport::LogSubscriber #:nodoc:
|
|
|
|
def enqueue(event)
|
|
|
|
info do
|
|
|
|
job = event.payload[:job]
|
|
|
|
"Enqueued #{job.class.name} (Job ID: #{job.job_id}) to #{queue_name(event)}" + args_info(job)
|
|
|
|
end
|
2014-09-04 22:33:28 -04:00
|
|
|
end
|
2014-05-20 13:09:45 -04:00
|
|
|
|
2016-08-06 13:55:02 -04:00
|
|
|
def enqueue_at(event)
|
|
|
|
info do
|
|
|
|
job = event.payload[:job]
|
|
|
|
"Enqueued #{job.class.name} (Job ID: #{job.job_id}) to #{queue_name(event)} at #{scheduled_at(event)}" + args_info(job)
|
|
|
|
end
|
2014-09-04 22:33:28 -04:00
|
|
|
end
|
2014-05-22 07:19:48 -04:00
|
|
|
|
2016-08-06 13:55:02 -04:00
|
|
|
def perform_start(event)
|
|
|
|
info do
|
|
|
|
job = event.payload[:job]
|
2017-02-22 16:09:17 -05:00
|
|
|
"Performing #{job.class.name} (Job ID: #{job.job_id}) from #{queue_name(event)}" + args_info(job)
|
2016-08-06 13:55:02 -04:00
|
|
|
end
|
2014-09-04 22:33:28 -04:00
|
|
|
end
|
2014-05-20 13:09:45 -04:00
|
|
|
|
2016-08-06 13:55:02 -04:00
|
|
|
def perform(event)
|
2017-03-27 19:16:50 -04:00
|
|
|
job = event.payload[:job]
|
|
|
|
ex = event.payload[:exception_object]
|
|
|
|
if ex
|
|
|
|
error do
|
|
|
|
"Error performing #{job.class.name} (Job ID: #{job.job_id}) from #{queue_name(event)} in #{event.duration.round(2)}ms: #{ex.class} (#{ex.message}):\n" + Array(ex.backtrace).join("\n")
|
|
|
|
end
|
|
|
|
else
|
|
|
|
info do
|
|
|
|
"Performed #{job.class.name} (Job ID: #{job.job_id}) from #{queue_name(event)} in #{event.duration.round(2)}ms"
|
|
|
|
end
|
2016-08-06 13:55:02 -04:00
|
|
|
end
|
2014-09-04 22:33:28 -04:00
|
|
|
end
|
2014-05-22 13:33:23 -04:00
|
|
|
|
2016-08-06 13:55:02 -04:00
|
|
|
private
|
|
|
|
def queue_name(event)
|
|
|
|
event.payload[:adapter].class.name.demodulize.remove("Adapter") + "(#{event.payload[:job].queue_name})"
|
|
|
|
end
|
2014-05-20 13:09:45 -04:00
|
|
|
|
2016-08-06 13:55:02 -04:00
|
|
|
def args_info(job)
|
|
|
|
if job.arguments.any?
|
|
|
|
" with arguments: " +
|
|
|
|
job.arguments.map { |arg| format(arg).inspect }.join(", ")
|
|
|
|
else
|
|
|
|
""
|
|
|
|
end
|
2014-11-28 14:19:16 -05:00
|
|
|
end
|
2014-05-22 07:19:48 -04:00
|
|
|
|
2016-08-06 13:55:02 -04:00
|
|
|
def format(arg)
|
|
|
|
case arg
|
|
|
|
when Hash
|
|
|
|
arg.transform_values { |value| format(value) }
|
|
|
|
when Array
|
|
|
|
arg.map { |value| format(value) }
|
|
|
|
when GlobalID::Identification
|
|
|
|
arg.to_global_id rescue arg
|
|
|
|
else
|
|
|
|
arg
|
|
|
|
end
|
2015-09-06 17:39:42 -04:00
|
|
|
end
|
|
|
|
|
2016-08-06 13:55:02 -04:00
|
|
|
def scheduled_at(event)
|
|
|
|
Time.at(event.payload[:job].scheduled_at).utc
|
|
|
|
end
|
2014-05-20 13:09:45 -04:00
|
|
|
|
2016-08-06 13:55:02 -04:00
|
|
|
def logger
|
|
|
|
ActiveJob::Base.logger
|
|
|
|
end
|
|
|
|
end
|
2014-05-20 07:41:14 -04:00
|
|
|
end
|
|
|
|
end
|
2014-05-20 13:09:45 -04:00
|
|
|
|
|
|
|
ActiveJob::Logging::LogSubscriber.attach_to :active_job
|