summaryrefslogtreecommitdiff
path: root/app/controllers/projects/environments/prometheus_api_controller.rb
blob: 94fe67b5e85638eaead523c882fe485e6edbcc7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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