perform.sidekiq
A Sidekiq job ran.
Fields
9| Field | Type | Description |
|---|---|---|
event_type | string | Allowed value: perform.sidekiq. |
jid | string | Sidekiq job ID. |
worker | string | Worker class name. |
queue | string | Queue the job ran on. |
status | string | Job execution outcome: 'success' if completed without exception, 'failure' if an exception was raised. |
duration | number | Execution duration in milliseconds. |
request_id | string | Rails request UUID from the active web request context, if any. Merged globally by the Honeybadger agent. |
hostname | string | Server hostname. Attached to every event by default (events.attach_hostname). |
environment | string | Application 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"}