summaryrefslogtreecommitdiff
path: root/app/views/admin/application_settings/_prometheus.html.haml
blob: e2051e17bf9ee0167679339722c362dc96eeba76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
= form_for @application_setting, url: metrics_and_profiling_admin_application_settings_path(anchor: 'js-prometheus-settings'), html: { class: 'fieldset-form' } do |f|
  = form_errors(@application_setting)

  %fieldset
    .form-group
      .form-check
        = f.check_box :prometheus_metrics_enabled, class: 'form-check-input'
        = f.label :prometheus_metrics_enabled, class: 'form-check-label' do
          = _("Enable health and performance metrics endpoint")
        .form-text.text-muted
          = _('Enable collection of application metrics. Restart required.')
          = link_to _('How to export these metrics to Prometheus?'), help_page_path('administration/monitoring/prometheus/gitlab_metrics.md'), target: '_blank', rel: 'noopener noreferrer'
        - unless Gitlab::Metrics.metrics_folder_present?
          .form-text.text-muted
            %strong.cred= _("WARNING:")
            = _("Environment variable %{environment_variable} does not exist or is not pointing to a valid directory.").html_safe % { environment_variable: '<code>prometheus_multiproc_dir</code>'.html_safe }
            = link_to sprite_icon('question-o'), help_page_path('administration/monitoring/prometheus/gitlab_metrics', anchor: 'metrics-shared-directory')
    .form-group
      = f.label :metrics_method_call_threshold, _('Method call threshold (ms)'), class: 'label-bold'
      = f.number_field :metrics_method_call_threshold, class: 'form-control gl-form-input'
      .form-text.text-muted
        Only track method calls that take longer to complete than the given duration.

  = f.submit _('Save changes'), class: "gl-button btn btn-confirm"