We need to use a class other than Probe for the indirector because the Indirection class might declare some probes, and this would be a huge unbreakable dependency cycle.
# File lib/puppet/util/instrumentation/indirection_probe.rb, line 26 def self.from_pson(data) self.new(data["name"]) end
# File lib/puppet/util/instrumentation/indirection_probe.rb, line 14 def initialize(probe_name) @probe_name = probe_name end
# File lib/puppet/util/instrumentation/indirection_probe.rb, line 18 def to_pson(*args) result = { :document_type => "Puppet::Util::Instrumentation::IndirectionProbe", :data => { :name => probe_name } } result.to_pson(*args) end