Skip to content
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

feat: add queueing steps in metrics #449

Merged
merged 2 commits into from
Sep 28, 2023
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
4 changes: 4 additions & 0 deletions src/schemas/enums/ServiceStepMetricName.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@ type: string
enum:
- REGISTRY_CREATE_REPOSITORY
- GIT_CLONE
- BUILD_QUEUEING
- BUILD
- DEPLOYMENT_QUEUEING
- DEPLOYMENT
- ROUTER_DEPLOYMENT
description: |
The name of the deployment step at the service level:
- REGISTRY_CREATE_REPOSITORY: The step to create the repository in the registry.
- GIT_CLONE: The step to clone the source code repository.
- BUILD_QUEUEING: The queuing time preceding the actual building step.
- BUILD: The step to build the source code.
- DEPLOYMENT_QUEUEING: The queuing time preceding the actual deployment step.
- DEPLOYMENT: The step to deploy the service.
- ROUTER_DEPLOYMENT: The step to deploy the router.
4 changes: 3 additions & 1 deletion src/schemas/enums/StageStepMetricName.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
type: string
enum:
- QUEUEING
- PROVISION_BUILDER
description: |
The name of the deployment step at the stage level:
- PROVISION_BUILDER: The step to provision builders before the actual build
- QUEUEING: The step preceding the actual stage deployment step.
- PROVISION_BUILDER: The step to provision builders before the actual build.
Loading