2020-07-02 17:09:14 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module OperationsHelper
|
|
|
|
include Gitlab::Utils::StrongMemoize
|
2021-06-24 11:07:28 -04:00
|
|
|
include IntegrationsHelper
|
2020-07-02 17:09:14 -04:00
|
|
|
|
2021-06-18 17:10:06 -04:00
|
|
|
def prometheus_integration
|
|
|
|
strong_memoize(:prometheus_integration) do
|
2021-06-23 14:07:10 -04:00
|
|
|
@project.find_or_initialize_integration(::Integrations::Prometheus.to_param)
|
2020-07-02 17:09:14 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-07-10 08:09:15 -04:00
|
|
|
def alerts_settings_data(disabled: false)
|
2021-06-04 02:09:57 -04:00
|
|
|
setting = project_incident_management_setting
|
|
|
|
templates = setting.available_issue_templates.map { |t| { key: t.key, name: t.name } }
|
|
|
|
|
2020-07-02 17:09:14 -04:00
|
|
|
{
|
2021-06-18 17:10:06 -04:00
|
|
|
'prometheus_activated' => prometheus_integration.manual_configuration?.to_s,
|
|
|
|
'prometheus_form_path' => scoped_integration_path(prometheus_integration),
|
2020-07-02 17:09:14 -04:00
|
|
|
'prometheus_reset_key_path' => reset_alerting_token_project_settings_operations_path(@project),
|
|
|
|
'prometheus_authorization_key' => @project.alerting_setting&.token,
|
2021-06-18 17:10:06 -04:00
|
|
|
'prometheus_api_url' => prometheus_integration.api_url,
|
2020-07-02 17:09:14 -04:00
|
|
|
'prometheus_url' => notify_project_prometheus_alerts_url(@project, format: :json),
|
2021-02-03 19:09:18 -05:00
|
|
|
'alerts_setup_url' => help_page_path('operations/incident_management/integrations.md', anchor: 'configuration'),
|
2020-07-10 08:09:15 -04:00
|
|
|
'alerts_usage_url' => project_alert_management_index_path(@project),
|
2020-10-29 14:09:11 -04:00
|
|
|
'disabled' => disabled.to_s,
|
2020-11-09 07:09:24 -05:00
|
|
|
'project_path' => @project.full_path,
|
2021-06-04 02:09:57 -04:00
|
|
|
'multi_integrations' => 'false',
|
|
|
|
'templates' => templates.to_json,
|
|
|
|
'create_issue' => setting.create_issue.to_s,
|
|
|
|
'issue_template_key' => setting.issue_template_key.to_s,
|
|
|
|
'send_email' => setting.send_email.to_s,
|
|
|
|
'auto_close_incident' => setting.auto_close_incident.to_s,
|
|
|
|
'pagerduty_reset_key_path' => reset_pagerduty_token_project_settings_operations_path(@project),
|
|
|
|
'operations_settings_endpoint' => project_settings_operations_path(@project)
|
2020-07-02 17:09:14 -04:00
|
|
|
}
|
|
|
|
end
|
2020-07-14 20:09:23 -04:00
|
|
|
|
|
|
|
def operations_settings_data
|
|
|
|
setting = project_incident_management_setting
|
|
|
|
|
|
|
|
{
|
|
|
|
operations_settings_endpoint: project_settings_operations_path(@project),
|
|
|
|
pagerduty_active: setting.pagerduty_active.to_s,
|
|
|
|
pagerduty_token: setting.pagerduty_token.to_s,
|
2020-07-20 14:09:27 -04:00
|
|
|
pagerduty_webhook_url: project_incidents_integrations_pagerduty_url(@project, token: setting.pagerduty_token),
|
2020-07-14 20:09:23 -04:00
|
|
|
pagerduty_reset_key_path: reset_pagerduty_token_project_settings_operations_path(@project)
|
|
|
|
}
|
|
|
|
end
|
2020-07-02 17:09:14 -04:00
|
|
|
end
|
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
OperationsHelper.prepend_mod_with('OperationsHelper')
|