enqueue_all.active_job
A batch of Active Job jobs was enqueued.
Fields
11| Field | Type | Description |
|---|---|---|
event_type | string | Allowed value: enqueue_all.active_job. |
adapter_class | string | ActiveJob adapter class. |
jobs | array<object> | Jobs included in the batch. |
jobs.job_class | string | |
jobs.job_id | string | |
jobs.queue_name | string | |
duration | number | Duration in milliseconds. |
instrumenter_id | string | Rails ActiveSupport::Notifications instrumenter UUID. |
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": "enqueue_all.active_job", "adapter_class": "ActiveJob::QueueAdapters::SidekiqAdapter", "jobs": [ { "job_class": "WelcomeEmailJob", "job_id": "c6e1f6b2-8d4a-4f0e-9b7c-1a2d3e4f5a6b", "queue_name": "default" }, { "job_class": "SyncCrmContactJob", "job_id": "8a2b4c6d-0e1f-4a3b-8c5d-7e9f1a2b3c4d", "queue_name": "default" } ], "duration": 3.86, "instrumenter_id": "d9f4a7b2c1e8d3f6a0b5", "request_id": "0f5e4bb2-3c46-4b1c-91d5-2f4e8a6b9c01", "hostname": "web-1.example.com", "environment": "production"}