24 lines
476 B
Ruby
24 lines
476 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
|
||
|
default_value_for :category, 'monitoring'
|
||
|
|
||
|
def self.supported_events
|
||
|
%w()
|
||
|
end
|
||
|
|
||
|
def can_query?
|
||
|
raise NotImplementedError
|
||
|
end
|
||
|
|
||
|
def query(_, *_)
|
||
|
raise NotImplementedError
|
||
|
end
|
||
|
end
|
||
|
end
|