2018-11-19 21:01:13 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-06 10:07:33 -04:00
|
|
|
module Gitlab
|
|
|
|
module Prometheus
|
|
|
|
module Queries
|
|
|
|
class AdditionalMetricsEnvironmentQuery < BaseQuery
|
|
|
|
include QueryAdditionalMetrics
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-06-06 10:07:33 -04:00
|
|
|
def query(environment_id)
|
2017-08-07 09:54:30 -04:00
|
|
|
::Environment.find_by(id: environment_id).try do |environment|
|
2017-08-01 16:11:59 -04:00
|
|
|
query_metrics(
|
2018-02-23 12:58:40 -05:00
|
|
|
environment.project,
|
2018-06-25 05:57:29 -04:00
|
|
|
environment,
|
2017-08-01 16:11:59 -04:00
|
|
|
common_query_context(environment, timeframe_start: 8.hours.ago.to_f, timeframe_end: Time.now.to_f)
|
|
|
|
)
|
2017-06-20 09:53:55 -04:00
|
|
|
end
|
2017-06-06 10:07:33 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-06-06 10:07:33 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|