summaryrefslogtreecommitdiff
path: root/app/graphql/types/error_tracking/sentry_error_frequency_type.rb
blob: 49a1b1e0476dd69a49ba5fce94d0ec0d5ebb99a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Types
  module ErrorTracking
    # rubocop: disable Graphql/AuthorizeTypes
    class SentryErrorFrequencyType < ::Types::BaseObject
      graphql_name 'SentryErrorFrequency'

      field :time, Types::TimeType,
        null: false,
        description: "Time the error frequency stats were recorded."
      field :count, GraphQL::Types::Int,
        null: false,
        description: "Count of errors received since the previously recorded time."
    end
    # rubocop: enable Graphql/AuthorizeTypes
  end
end