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
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/pipeline/metrics.rb')
-rw-r--r--lib/gitlab/ci/pipeline/metrics.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/gitlab/ci/pipeline/metrics.rb b/lib/gitlab/ci/pipeline/metrics.rb
index 28df9f5386c..321efa7854f 100644
--- a/lib/gitlab/ci/pipeline/metrics.rb
+++ b/lib/gitlab/ci/pipeline/metrics.rb
@@ -65,13 +65,6 @@ module Gitlab
Gitlab::Metrics.counter(name, comment)
end
- def self.legacy_update_jobs_counter
- name = :ci_legacy_update_jobs_as_retried_total
- comment = 'Counter of occurrences when jobs were not being set as retried before update_retried'
-
- Gitlab::Metrics.counter(name, comment)
- end
-
def self.pipeline_failure_reason_counter
name = :gitlab_ci_pipeline_failure_reasons
comment = 'Counter of pipeline failure reasons'
@@ -92,14 +85,6 @@ module Gitlab
Gitlab::Metrics.counter(name, comment)
end
-
- def self.gitlab_ci_difference_live_vs_actual_minutes
- name = :gitlab_ci_difference_live_vs_actual_minutes
- comment = 'Comparison between CI minutes consumption from live tracking vs actual consumption'
- labels = {}
- buckets = [-120.0, -60.0, -30.0, -10.0, -5.0, -3.0, -1.0, 0.0, 1.0, 3.0, 5.0, 10.0, 30.0, 60.0, 120.0]
- ::Gitlab::Metrics.histogram(name, comment, labels, buckets)
- end
end
end
end