debian-mirror-gitlab/app/models/project_services/monitoring_service.rb
2017-08-17 22:00:37 +05:30

16 lines
434 B
Ruby

# Base class for monitoring services
#
# These services integrate with a deployment solution like Prometheus
# to provide additional features for environments.
class MonitoringService < Service
default_value_for :category, 'monitoring'
def self.supported_events
%w()
end
# Environments have a number of metrics
def metrics(environment, timeframe_start: nil, timeframe_end: nil)
raise NotImplementedError
end
end