gitlab-org--gitlab-foss/app/controllers/projects/environments/prometheus_api_controller.rb

20 lines
419 B
Ruby

# frozen_string_literal: true
class Projects::Environments::PrometheusApiController < Projects::ApplicationController
include Metrics::Dashboard::PrometheusApiProxy
before_action :proxyable
feature_category :metrics
private
def proxyable
@proxyable ||= project.environments.find(params[:id])
end
def proxy_variable_substitution_service
Prometheus::ProxyVariableSubstitutionService
end
end