Skip to content

perform.active_job

View Markdown

An Active Job job ran, whether it succeeded or raised an exception.

Source Active Job Category Jobs Fields 12 honeybadger-ruby

Fields

12
FieldTypeDescription
event_typestringAllowed value: perform.active_job.
job_classstringActiveJob class name.
job_idstringUnique job identifier.
queue_namestringQueue the job ran on.
adapter_classstringActiveJob adapter class, e.g. "SidekiqAdapter".
statusstringJob execution outcome: 'success' if completed without exception, 'failure' if an exception was raised. Allowed values: success, failure.
exception_objectstringThe exception instance if the job raised, absent on success. Serialized as a string in JSON format.
durationnumberDuration in milliseconds.
instrumenter_idstringRails ActiveSupport::Notifications instrumenter UUID.
request_idstringRails request UUID from the active web request context, if any. Merged globally by the Honeybadger agent.
hostnamestringServer hostname. Attached to every event by default (events.attach_hostname).
environmentstringApplication environment, e.g. "production". Attached to every event by default (events.attach_environment).

Example

{
"event_type": "perform.active_job",
"job_class": "WelcomeEmailJob",
"job_id": "b1d2e3f4-5a6b-4c7d-8e9f-0a1b2c3d4e5f",
"queue_name": "default",
"adapter_class": "ActiveJob::QueueAdapters::SidekiqAdapter",
"status": "success",
"duration": 532.18,
"instrumenter_id": "d6a5b3f4c2e1908a7b6c",
"request_id": "0f5e4bb2-3c46-4b1c-91d5-2f4e8a6b9c01",
"hostname": "worker-1.example.com",
"environment": "production"
}