Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -13251,6 +13251,14 @@
"type": "string",
"format": "int64",
"description": "Total number of heartbeats recorded across all attempts of this activity, including retries."
},
"sdkName": {
"type": "string",
"description": "The name of the SDK of the worker that most recently picked up an attempt of this activity.\nOverwritten on each new attempt. Empty if unknown."
},
"sdkVersion": {
"type": "string",
"description": "The version of the SDK of the worker that most recently picked up an attempt of this activity.\nOverwritten on each new attempt. Empty if unknown."
}
},
"description": "Information about a standalone activity."
Expand Down
10 changes: 10 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9732,6 +9732,16 @@ components:
totalHeartbeatCount:
type: string
description: Total number of heartbeats recorded across all attempts of this activity, including retries.
sdkName:
type: string
description: |-
The name of the SDK of the worker that most recently picked up an attempt of this activity.
Overwritten on each new attempt. Empty if unknown.
sdkVersion:
type: string
description: |-
The version of the SDK of the worker that most recently picked up an attempt of this activity.
Overwritten on each new attempt. Empty if unknown.
description: Information about a standalone activity.
ActivityExecutionListInfo:
type: object
Expand Down
8 changes: 8 additions & 0 deletions temporal/api/activity/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,14 @@ message ActivityExecutionInfo {

// Total number of heartbeats recorded across all attempts of this activity, including retries.
int64 total_heartbeat_count = 34;

// The name of the SDK of the worker that most recently picked up an attempt of this activity.
// Overwritten on each new attempt. Empty if unknown.
string sdk_name = 35;

// The version of the SDK of the worker that most recently picked up an attempt of this activity.
// Overwritten on each new attempt. Empty if unknown.
string sdk_version = 36;
}

// Limited activity information returned in the list response.
Expand Down
Loading