oban.lifeline_exception
Oban’s lifeline loop, which rescues orphaned executing jobs, raised an exception.
Fields
6| Field | Type | Description |
|---|---|---|
event_type | string | Allowed value: oban.lifeline_exception. |
loop | string | Name of the Oban maintenance loop that raised. Allowed value: lifeline. |
event | string | The underlying Oban telemetry event name. Allowed values: oban.lifeline.rescue.exception. |
error_type | string | Exception class name. |
error_message | string | Exception message. |
duration | number | Duration of the failed loop iteration in milliseconds. |
Example
{ "event_type": "oban.lifeline_exception", "loop": "lifeline", "event": "oban.lifeline.rescue.exception", "error_type": "OperationalError", "error_message": "connection to server was lost", "duration": 3.1415}