module Roqua module Probes module BaseProbe def enable new.tap do |probe| probe_sym = probe.class.to_s.to_sym Appsignal::Minutely.probes.register(probe_sym, probe) unless Appsignal::Minutely.probes[probe_sym] end end end end end