class Monitoring::MonitoringRegistryFactory

Factory that is used to create a monitoring registry based on the monitoring solution name.

Public Class Methods

create(name) click to toggle source
# File lib/fluent/plugin/monitoring.rb, line 51
def self.create(name)
  (@known_registry_types[name] || BaseMonitoringRegistry).new
end