-
Notifications
You must be signed in to change notification settings - Fork 3
BCH-1153: Populate per-step metrics in workflow execution metrics resp #399
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
6b459ff
f428101
7b31c6a
2655cff
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8261,10 +8261,14 @@ definitions: | |
| $ref: '#/definitions/time.Duration' | ||
| duration: | ||
| $ref: '#/definitions/time.Duration' | ||
| executionID: | ||
| executionId: | ||
| type: string | ||
|
Comment on lines
+8264
to
8265
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
If this endpoint is already consumed, please keep backward compatibility (or version the API) before merging; clients bound to 🤖 Prompt for AI Agents
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @gusfcarvalho is this something I need to be concerned about? AFAICT the UI is still working but I'm conscious that we don't have end to end tests automated so coverage for things like this may be lacking. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| longestStepDuration: | ||
| $ref: '#/definitions/time.Duration' | ||
| stepMetrics: | ||
| items: | ||
| $ref: '#/definitions/workflow.StepMetric' | ||
| type: array | ||
| totalSteps: | ||
| type: integer | ||
| type: object | ||
|
|
@@ -8299,6 +8303,22 @@ definitions: | |
| totalSteps: | ||
| type: integer | ||
| type: object | ||
| workflow.StepMetric: | ||
| properties: | ||
| completedAt: | ||
| format: date-time | ||
| type: string | ||
| durationMinutes: | ||
| type: number | ||
| startedAt: | ||
| format: date-time | ||
| type: string | ||
| stepDefinitionId: | ||
| format: uuid | ||
| type: string | ||
| stepName: | ||
| type: string | ||
| type: object | ||
| workflows.BulkReassignRoleResponse: | ||
| properties: | ||
| data: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.