diff --git a/src/schemas/enums/ServiceStepMetricName.yaml b/src/schemas/enums/ServiceStepMetricName.yaml index ee169211..b70eca83 100644 --- a/src/schemas/enums/ServiceStepMetricName.yaml +++ b/src/schemas/enums/ServiceStepMetricName.yaml @@ -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. diff --git a/src/schemas/enums/StageStepMetricName.yaml b/src/schemas/enums/StageStepMetricName.yaml index 3fa294fa..004a3962 100644 --- a/src/schemas/enums/StageStepMetricName.yaml +++ b/src/schemas/enums/StageStepMetricName.yaml @@ -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.