BackgroundJobAttempt Model
BackgroundJobAttempt Model documentation for .NET SDK
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 | bool? | 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] |