Welcome to mirror list, hosted at ThFree Co, Russian Federation.

prometheus_alert_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 789f1d6eb5f204289c46b4bbd0e4c082e038b4f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module Types
  class PrometheusAlertType < BaseObject
    graphql_name 'PrometheusAlert'
    description 'The alert condition for Prometheus'

    authorize :read_prometheus_alerts

    present_using PrometheusAlertPresenter

    field :id, GraphQL::Types::ID, null: false,
          description: 'ID of the alert condition.'

    field :humanized_text,
          GraphQL::Types::String,
          null: false,
          description: 'Human-readable text of the alert condition.'
  end
end