gitlab-labkit 2.3.1 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitlab-ci.yml +3 -3
- data/.pre-commit-config.yaml +1 -1
- data/lib/labkit/fields.rb +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9feee9c8b400e6d23dae0a6b743f9e3a6f3074e005d8961686c8440d814a4b2f
|
|
4
|
+
data.tar.gz: 971fc652faca19f0a57e151db5d776c75f64be9b04d7ffccd4a4d4dd7b6a3d2a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 432a9a9842ca1e17cd1b25fa25303cb219c20a0f4cdd4201ac79a998fc8a72848f4a5dda0a9d3e31e3a0e312d88f97b9760915324892d7c5d2d607f18021e40e
|
|
7
|
+
data.tar.gz: 995aa133640851db2a9d649bd877705853cdfdce69959dd578f437d1d6e589193966202ffa83707f887ee28745d26bbcc2f96c4f87c3a68e951d3e3aeeb83cab
|
data/.gitlab-ci.yml
CHANGED
|
@@ -19,13 +19,13 @@ include:
|
|
|
19
19
|
# It includes standard checks, gitlab-scanners, validations and release processes
|
|
20
20
|
# common to all projects using this template library.
|
|
21
21
|
# see https://gitlab.com/gitlab-com/gl-infra/common-ci-tasks/-/blob/main/templates/standard.md
|
|
22
|
-
- component: $CI_SERVER_FQDN/gitlab-com/gl-infra/common-ci-tasks/standard-build@v4.
|
|
22
|
+
- component: $CI_SERVER_FQDN/gitlab-com/gl-infra/common-ci-tasks/standard-build@v4.8
|
|
23
23
|
|
|
24
24
|
# Runs rspec tests and rubocop on the project
|
|
25
25
|
# see https://gitlab.com/gitlab-com/gl-infra/common-ci-tasks/-/blob/main/templates/ruby.md
|
|
26
|
-
- component: $CI_SERVER_FQDN/gitlab-com/gl-infra/common-ci-tasks/ruby-build@v4.
|
|
26
|
+
- component: $CI_SERVER_FQDN/gitlab-com/gl-infra/common-ci-tasks/ruby-build@v4.8
|
|
27
27
|
|
|
28
|
-
- component: $CI_SERVER_FQDN/gitlab-com/gl-infra/common-ci-tasks/danger@v4.
|
|
28
|
+
- component: $CI_SERVER_FQDN/gitlab-com/gl-infra/common-ci-tasks/danger@v4.8
|
|
29
29
|
|
|
30
30
|
# Attach a redis service to the rspec job from common-ci-tasks/ruby-build.
|
|
31
31
|
# GitLab merges keys when a local job has the same name as an included one,
|
data/.pre-commit-config.yaml
CHANGED
|
@@ -25,7 +25,7 @@ repos:
|
|
|
25
25
|
# Documentation available at
|
|
26
26
|
# https://gitlab.com/gitlab-com/gl-infra/common-ci-tasks/-/blob/main/docs/pre-commit.md
|
|
27
27
|
- repo: https://gitlab.com/gitlab-com/gl-infra/common-ci-tasks
|
|
28
|
-
rev: v4.
|
|
28
|
+
rev: v4.8 # renovate:managed
|
|
29
29
|
|
|
30
30
|
hooks:
|
|
31
31
|
- id: shellcheck # Run shellcheck for changed Shell files
|
data/lib/labkit/fields.rb
CHANGED
|
@@ -21,6 +21,10 @@ module Labkit
|
|
|
21
21
|
# filtering in Kibana and Grafana.
|
|
22
22
|
DUO_WORKFLOW_DEFINITION = "duo_workflow_definition"
|
|
23
23
|
|
|
24
|
+
# Unique identifier for a Duo Workflow instance. Identifies a specific
|
|
25
|
+
# workflow run, enabling per-workflow tracing in logs.
|
|
26
|
+
DUO_WORKFLOW_ID = "duo_workflow_id"
|
|
27
|
+
|
|
24
28
|
# Error type or classification (e.g. "NoMethodError", "ValidationError").
|
|
25
29
|
ERROR_TYPE = "error_type"
|
|
26
30
|
|
|
@@ -125,6 +129,7 @@ module Labkit
|
|
|
125
129
|
GL_USER_ID => 1,
|
|
126
130
|
GL_USER_NAME => 1,
|
|
127
131
|
DUO_WORKFLOW_DEFINITION => 0,
|
|
132
|
+
DUO_WORKFLOW_ID => 0,
|
|
128
133
|
ERROR_TYPE => 0,
|
|
129
134
|
ERROR_MESSAGE => 1,
|
|
130
135
|
HTTP_STATUS_CODE => 1,
|