| Server IP : 77.68.64.21 / Your IP : 216.73.217.105 Web Server : Apache System : Linux hp3-wp-1011378.hostingp3.local 3.10.0-1160.144.1.el7.tuxcare.els9.x86_64 #1 SMP Fri Jul 10 17:06:31 UTC 2026 x86_64 User : csh2668128 ( 2112425) PHP Version : 8.1.34 Disable Function : shell_exec,exec,system,popen,set_time_limit MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/ruby/vendor_ruby/puppet/util/ |
Upload File : |
require 'benchmark'
# A simple profiling callback system.
#
# @api public
module Puppet::Util::Profiler
require 'puppet/util/profiler/wall_clock'
require 'puppet/util/profiler/object_counts'
require 'puppet/util/profiler/none'
NONE = Puppet::Util::Profiler::None.new
# Reset the profiling system to the original state
#
# @api private
def self.clear
@profiler = nil
end
# @return This thread's configured profiler
# @api private
def self.current
@profiler || NONE
end
# @param profiler [#profile] A profiler for the current thread
# @api private
def self.current=(profiler)
@profiler = profiler
end
# Profile a block of code and log the time it took to execute.
#
# This outputs logs entries to the Puppet masters logging destination
# providing the time it took, a message describing the profiled code
# and a leaf location marking where the profile method was called
# in the profiled hierachy.
#
# @param message [String] A description of the profiled event
# @param block [Block] The segment of code to profile
# @api public
def self.profile(message, &block)
current.profile(message, &block)
end
end