Skip to content
Merged
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
5 changes: 5 additions & 0 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -11443,6 +11443,11 @@
"$ref": "#/definitions/v1Link"
},
"description": "Links to related entities, such as the entity that started this activity."
},
"totalHeartbeatCount": {
"type": "string",
"format": "int64",
"description": "Total number of heartbeats recorded across all attempts of this activity, including retries."
}
},
"description": "Information about a standalone activity."
Expand Down
3 changes: 3 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8243,6 +8243,9 @@ components:
items:
$ref: '#/components/schemas/Link'
description: Links to related entities, such as the entity that started this activity.
totalHeartbeatCount:
type: string
description: Total number of heartbeats recorded across all attempts of this activity, including retries.
description: Information about a standalone activity.
ActivityExecutionListInfo:
type: object
Expand Down
3 changes: 3 additions & 0 deletions temporal/api/activity/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,9 @@ message ActivityExecutionInfo {

// Links to related entities, such as the entity that started this activity.
repeated temporal.api.common.v1.Link links = 33;

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

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