22 lines
587 B
Ruby
22 lines
587 B
Ruby
|
module Gitlab
|
||
|
module Prometheus
|
||
|
module Queries
|
||
|
class AdditionalMetricsDeploymentQuery < BaseQuery
|
||
|
include QueryAdditionalMetrics
|
||
|
|
||
|
def query(deployment_id)
|
||
|
Deployment.find_by(id: deployment_id).try do |deployment|
|
||
|
query_metrics(
|
||
|
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
|