debian-mirror-gitlab/app/models/integrations/base_monitoring.rb
2023-01-12 18:35:48 +00:00

23 lines
477 B
Ruby

# frozen_string_literal: true
# Base class for monitoring services
#
# These services integrate with a deployment solution like Prometheus
# to provide additional features for environments.
module Integrations
class BaseMonitoring < Integration
attribute :category, default: 'monitoring'
def self.supported_events
%w()
end
def can_query?
raise NotImplementedError
end
def query(_, *_)
raise NotImplementedError
end
end
end