Skip to content

perform.sidekiq

View Markdown

A Sidekiq job ran.

Source Sidekiq Category Jobs Fields 9 honeybadger-ruby

Fields

9
FieldTypeDescription
event_typestringAllowed value: perform.sidekiq.
jidstringSidekiq job ID.
workerstringWorker class name.
queuestringQueue the job ran on.
statusstringJob execution outcome: 'success' if completed without exception, 'failure' if an exception was raised.
durationnumberExecution duration in milliseconds.
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.sidekiq",
"jid": "8f0c1d2e3a4b5c6d7e8f9a0b",
"worker": "WelcomeEmailWorker",
"queue": "default",
"status": "success",
"duration": 487.32,
"request_id": "0f5e4bb2-3c46-4b1c-91d5-2f4e8a6b9c01",
"hostname": "worker-1.example.com",
"environment": "production"
}