summaryrefslogtreecommitdiff
path: root/lib/gitlab/prometheus/queries/additional_metrics_deployment_query.rb
blob: 972ab75d1d5c5c1beb0a5da89e8de548d5a09c55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module Gitlab
  module Prometheus
    module Queries
      class AdditionalMetricsDeploymentQuery < BaseQuery
        include QueryAdditionalMetrics

        def query(environment_id, deployment_id)
          Deployment.find_by(id: deployment_id).try do |deployment|
            query_metrics(
              deployment.project,
              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
      end
    end
  end
end