Skip to content

Commit 78c8193

Browse files
authored
Merge branch 'master' into standalone-nexus-op
2 parents 734ce9d + 0460021 commit 78c8193

3 files changed

Lines changed: 11 additions & 0 deletions

File tree

openapi/openapiv2.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12268,6 +12268,11 @@
1226812268
"$ref": "#/definitions/v1Link"
1226912269
},
1227012270
"description": "Links to related entities, such as the entity that started this activity."
12271+
},
12272+
"totalHeartbeatCount": {
12273+
"type": "string",
12274+
"format": "int64",
12275+
"description": "Total number of heartbeats recorded across all attempts of this activity, including retries."
1227112276
}
1227212277
},
1227312278
"description": "Information about a standalone activity."

openapi/openapiv3.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8885,6 +8885,9 @@ components:
88858885
items:
88868886
$ref: '#/components/schemas/Link'
88878887
description: Links to related entities, such as the entity that started this activity.
8888+
totalHeartbeatCount:
8889+
type: string
8890+
description: Total number of heartbeats recorded across all attempts of this activity, including retries.
88888891
description: Information about a standalone activity.
88898892
ActivityExecutionListInfo:
88908893
type: object

temporal/api/activity/v1/message.proto

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,9 @@ message ActivityExecutionInfo {
165165

166166
// Links to related entities, such as the entity that started this activity.
167167
repeated temporal.api.common.v1.Link links = 33;
168+
169+
// Total number of heartbeats recorded across all attempts of this activity, including retries.
170+
int64 total_heartbeat_count = 34;
168171
}
169172

170173
// Limited activity information returned in the list response.

0 commit comments

Comments
 (0)