debian-mirror-gitlab/lib/gitlab/ci/pipeline/metrics.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

101 lines
3.4 KiB
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# frozen_string_literal: true
module Gitlab
module Ci
module Pipeline
class Metrics
2021-11-11 11:23:49 +05:30
extend Gitlab::Utils::StrongMemoize
2021-04-29 21:17:54 +05:30
def self.pipeline_creation_duration_histogram
name = :gitlab_ci_pipeline_creation_duration_seconds
comment = 'Pipeline creation duration'
labels = {}
buckets = [0.01, 0.05, 0.1, 0.5, 1.0, 2.0, 5.0, 20.0, 50.0, 240.0]
2020-07-28 23:09:34 +05:30
2021-04-29 21:17:54 +05:30
::Gitlab::Metrics.histogram(name, comment, labels, buckets)
end
2021-11-11 11:23:49 +05:30
def self.pipeline_creation_step_duration_histogram
strong_memoize(:pipeline_creation_step_histogram) do
name = :gitlab_ci_pipeline_creation_step_duration_seconds
comment = 'Duration of each pipeline creation step'
labels = { step: nil }
buckets = [0.01, 0.05, 0.1, 0.5, 1.0, 2.0, 5.0, 10.0, 15.0, 20.0, 50.0, 240.0]
::Gitlab::Metrics.histogram(name, comment, labels, buckets)
end
end
2021-06-08 01:23:25 +05:30
def self.pipeline_security_orchestration_policy_processing_duration_histogram
name = :gitlab_ci_pipeline_security_orchestration_policy_processing_duration_seconds
comment = 'Pipeline security orchestration policy processing duration'
::Gitlab::Metrics.histogram(name, comment)
end
2021-04-29 21:17:54 +05:30
def self.pipeline_size_histogram
name = :gitlab_ci_pipeline_size_builds
comment = 'Pipeline size'
labels = { source: nil }
2021-10-27 15:23:28 +05:30
buckets = [0, 1, 5, 10, 20, 50, 100, 200, 500, 1000, 2000, 3000]
::Gitlab::Metrics.histogram(name, comment, labels, buckets)
end
def self.active_jobs_histogram
name = :gitlab_ci_active_jobs
comment = 'Total amount of active jobs'
labels = { plan: nil }
2022-07-16 23:28:13 +05:30
buckets = [0, 200, 500, 1_000, 2_000, 5_000, 10_000, 15_000, 20_000, 30_000, 40_000]
2021-04-29 21:17:54 +05:30
::Gitlab::Metrics.histogram(name, comment, labels, buckets)
end
2021-12-11 22:18:48 +05:30
def self.pipeline_builder_scoped_variables_histogram
name = :gitlab_ci_pipeline_builder_scoped_variables_duration
comment = 'Pipeline variables builder scoped_variables duration'
labels = {}
buckets = [0.01, 0.05, 0.1, 0.3, 0.5, 1, 2, 5, 10, 30, 60, 120]
::Gitlab::Metrics.histogram(name, comment, labels, buckets)
end
2021-04-29 21:17:54 +05:30
def self.pipeline_processing_events_counter
name = :gitlab_ci_pipeline_processing_events_total
comment = 'Total amount of pipeline processing events'
2020-07-28 23:09:34 +05:30
2021-04-29 21:17:54 +05:30
Gitlab::Metrics.counter(name, comment)
2020-07-28 23:09:34 +05:30
end
2021-04-29 21:17:54 +05:30
def self.pipelines_created_counter
name = :pipelines_created_total
comment = 'Counter of pipelines created'
2020-07-28 23:09:34 +05:30
2021-04-29 21:17:54 +05:30
Gitlab::Metrics.counter(name, comment)
2020-07-28 23:09:34 +05:30
end
2021-04-29 21:17:54 +05:30
def self.pipeline_failure_reason_counter
name = :gitlab_ci_pipeline_failure_reasons
comment = 'Counter of pipeline failure reasons'
2020-10-24 23:57:45 +05:30
2021-04-29 21:17:54 +05:30
Gitlab::Metrics.counter(name, comment)
2020-10-24 23:57:45 +05:30
end
2021-03-11 19:13:27 +05:30
2021-04-29 21:17:54 +05:30
def self.job_failure_reason_counter
name = :gitlab_ci_job_failure_reasons
comment = 'Counter of job failure reasons'
2021-03-11 19:13:27 +05:30
2021-04-29 21:17:54 +05:30
Gitlab::Metrics.counter(name, comment)
2021-03-11 19:13:27 +05:30
end
2021-06-08 01:23:25 +05:30
def ci_minutes_exceeded_builds_counter
name = :ci_minutes_exceeded_builds_counter
comment = 'Count of builds dropped due to CI minutes exceeded'
Gitlab::Metrics.counter(name, comment)
end
2020-07-28 23:09:34 +05:30
end
end
end
end