2020-07-28 23:09:34 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
module Projects
|
|
|
|
class MetricsDashboardController < Projects::ApplicationController
|
|
|
|
# Metrics dashboard code is in the process of being decoupled from environments
|
|
|
|
# and is getting moved to this controller. Some code may be duplicated from
|
|
|
|
# app/controllers/projects/environments_controller.rb
|
|
|
|
# See https://gitlab.com/gitlab-org/gitlab/-/issues/226002 for more details.
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
include Gitlab::Utils::StrongMemoize
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
before_action :authorize_metrics_dashboard!
|
|
|
|
before_action do
|
|
|
|
push_frontend_feature_flag(:prometheus_computed_alerts)
|
2020-10-24 23:57:45 +05:30
|
|
|
push_frontend_feature_flag(:disable_metric_dashboard_refresh_rate)
|
2020-07-28 23:09:34 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
if environment
|
|
|
|
render 'projects/environments/metrics'
|
2020-11-24 15:15:51 +05:30
|
|
|
elsif default_environment
|
|
|
|
redirect_to project_metrics_dashboard_path(
|
|
|
|
project,
|
|
|
|
# Reverse merge the query parameters so that a query parameter named dashboard_path doesn't
|
|
|
|
# override the dashboard_path path parameter.
|
|
|
|
**permitted_params.to_h.symbolize_keys
|
|
|
|
.merge(environment: default_environment.id)
|
|
|
|
.reverse_merge(request.query_parameters.symbolize_keys)
|
|
|
|
)
|
2020-07-28 23:09:34 +05:30
|
|
|
else
|
2020-10-24 23:57:45 +05:30
|
|
|
render 'projects/environments/empty_metrics'
|
2020-07-28 23:09:34 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
def permitted_params
|
|
|
|
@permitted_params ||= params.permit(:dashboard_path, :environment, :page)
|
|
|
|
end
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
def environment
|
2020-11-24 15:15:51 +05:30
|
|
|
strong_memoize(:environment) do
|
|
|
|
env = permitted_params[:environment]
|
|
|
|
project.environments.find(env) if env
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def default_environment
|
|
|
|
strong_memoize(:default_environment) do
|
|
|
|
project.default_environment
|
|
|
|
end
|
2020-07-28 23:09:34 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|