debian-mirror-gitlab/app/graphql/types/prometheus_alert_type.rb
2020-10-24 23:57:45 +05:30

21 lines
519 B
Ruby

# 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::ID_TYPE, null: false,
description: 'ID of the alert condition'
field :humanized_text,
GraphQL::STRING_TYPE,
null: false,
description: 'The human-readable text of the alert condition'
end
end