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

alert_status_counts_type.rb « alert_management « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c4aedb099972b8f7f170e51d1417c0c9c1908387 (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
28
29
30
# frozen_string_literal: true

# Service for managing alert counts and cache updates.
module Types
  module AlertManagement
    class AlertStatusCountsType < BaseObject
      graphql_name 'AlertManagementAlertStatusCountsType'
      description "Represents total number of alerts for the represented categories"

      authorize :read_alert_management_alert

      ::AlertManagement::Alert.status_names.each do |status|
        field status,
              GraphQL::Types::Int,
              null: true,
              description: "Number of alerts with status #{status.to_s.upcase} for the project"
      end

      field :open,
            GraphQL::Types::Int,
            null: true,
            description: 'Number of alerts with status TRIGGERED or ACKNOWLEDGED for the project.'

      field :all,
            GraphQL::Types::Int,
            null: true,
            description: 'Total number of alerts for the project.'
    end
  end
end