Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-11-29 18:13:12 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-11-29 18:13:12 +0300
commita22611115a99f74812dab8e1988bd5b0bda3f75d (patch)
tree881280da77ecf40cde888eb1bc6069ed99099ef9 /lib
parent548f365e6b98558df0ff886e675d66e15cb79027 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/ci/pipeline/logger.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/gitlab/ci/pipeline/logger.rb b/lib/gitlab/ci/pipeline/logger.rb
index a3e7dda9be5..f677b2f70d0 100644
--- a/lib/gitlab/ci/pipeline/logger.rb
+++ b/lib/gitlab/ci/pipeline/logger.rb
@@ -47,12 +47,12 @@ module Gitlab
return unless log?
attributes = {
- caller: caller,
+ pipeline_creation_caller: caller,
project_id: project.id,
pipeline_id: pipeline.id,
- persisted: pipeline.persisted?,
- source: pipeline.source,
- duration_s: age
+ pipeline_persisted: pipeline.persisted?,
+ pipeline_source: pipeline.source,
+ pipeline_creation_service_duration_s: age
}.stringify_keys.merge(observations_hash)
destination.info(attributes)