2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Projects::Environments::PrometheusApiController < Projects::ApplicationController
|
2019-12-21 20:55:43 +05:30
|
|
|
include RenderServiceResults
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
before_action :authorize_read_prometheus!
|
|
|
|
before_action :environment
|
|
|
|
|
|
|
|
def proxy
|
|
|
|
result = Prometheus::ProxyService.new(
|
|
|
|
environment,
|
2019-07-31 22:56:46 +05:30
|
|
|
proxy_method,
|
|
|
|
proxy_path,
|
|
|
|
proxy_params
|
2019-07-07 11:18:12 +05:30
|
|
|
).execute
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
return continue_polling_response if result.nil?
|
|
|
|
return error_response(result) if result[:status] == :error
|
|
|
|
|
|
|
|
success_response(result)
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-07-31 22:56:46 +05:30
|
|
|
def query_context
|
|
|
|
Gitlab::Prometheus::QueryVariables.call(environment)
|
|
|
|
end
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
def environment
|
|
|
|
@environment ||= project.environments.find(params[:id])
|
|
|
|
end
|
2019-07-31 22:56:46 +05:30
|
|
|
|
|
|
|
def proxy_method
|
|
|
|
request.method
|
|
|
|
end
|
|
|
|
|
|
|
|
def proxy_path
|
|
|
|
params[:proxy_path]
|
|
|
|
end
|
|
|
|
|
|
|
|
def proxy_params
|
|
|
|
substitute_query_variables(params).permit!
|
|
|
|
end
|
|
|
|
|
|
|
|
def substitute_query_variables(params)
|
|
|
|
query = params[:query]
|
|
|
|
return params unless query
|
|
|
|
|
|
|
|
params.merge(query: query % query_context)
|
|
|
|
end
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|