summaryrefslogtreecommitdiff
path: root/app/presenters/alert_management/prometheus_alert_presenter.rb
blob: 3bcc98e67842eb8588045edd43fc6040a74139c4 (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
25
26
27
# frozen_string_literal: true

module AlertManagement
  class PrometheusAlertPresenter < AlertManagement::AlertPresenter
    def metrics_dashboard_url
      alerting_alert.metrics_dashboard_url
    end

    private

    def alert_markdown
      alerting_alert.alert_markdown
    end

    def details_list
      alerting_alert.annotation_list
    end

    def metric_embed_for_alert
      alerting_alert.metric_embed_for_alert
    end

    def full_query
      alerting_alert.full_query
    end
  end
end