gitlab-org--gitlab-foss/app/graphql/types/error_tracking/sentry_error_frequency_type.rb

19 lines
548 B
Ruby

# frozen_string_literal: true
module Types
module ErrorTracking
# rubocop: disable Graphql/AuthorizeTypes
class SentryErrorFrequencyType < ::Types::BaseObject
graphql_name 'SentryErrorFrequency'
field :count, GraphQL::Types::Int,
null: false,
description: "Count of errors received since the previously recorded time."
field :time, Types::TimeType,
null: false,
description: "Time the error frequency stats were recorded."
end
# rubocop: enable Graphql/AuthorizeTypes
end
end