2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
module Gitlab
|
|
|
|
module Prometheus
|
|
|
|
module Queries
|
|
|
|
class AdditionalMetricsDeploymentQuery < BaseQuery
|
|
|
|
include QueryAdditionalMetrics
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2018-03-27 19:54:05 +05:30
|
|
|
def query(deployment_id)
|
2017-09-10 17:25:29 +05:30
|
|
|
Deployment.find_by(id: deployment_id).try do |deployment|
|
|
|
|
query_metrics(
|
2018-03-27 19:54:05 +05:30
|
|
|
deployment.project,
|
2018-11-18 11:00:15 +05:30
|
|
|
deployment.environment,
|
2017-09-10 17:25:29 +05:30
|
|
|
common_query_context(
|
|
|
|
deployment.environment,
|
|
|
|
timeframe_start: (deployment.created_at - 30.minutes).to_f,
|
|
|
|
timeframe_end: (deployment.created_at + 30.minutes).to_f
|
|
|
|
)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|