BackgroundJobAttempt Model
BackgroundJobAttempt Model documentation for Java SDK
BackgroundJobAttempt
Telemetry captured for a single execution attempt of a background job
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| attemptId | Long | Identifier of the attempt | |
| jobId | Long | Identifier of the job that owns this attempt | |
| startedAt | Long | Attempt start timestamp (milliseconds since epoch) | [optional] |
| finishedAt | Long | Attempt completion timestamp (milliseconds since epoch) | [optional] |
| ok | Boolean | Indicates whether the attempt succeeded (null if still running) | [optional] |
| workerId | String | Identifier of the worker processing the attempt | [optional] |
| statusMessage | String | Latest status message reported by the worker | [optional] |
| progressCurrent | Long | Current progress counter value | |
| progressTotal | Long | Total progress target when known | [optional] |
| progressUnit | String | Unit label associated with the progress counters | [optional] |
| progressUpdatedAt | Long | Timestamp when progress was last updated (milliseconds since epoch) | [optional] |
| errorMessage | String | Short error message recorded when the attempt failed | [optional] |
| errorStacktrace | String | Stack trace captured when the attempt failed, if available | [optional] |