Sha256: 4ec5be8f401dd3d5b16602c58e6d5c3402edafdc181e1c15a4c95ac853a6a22f

Contents?: true

Size: 1.43 KB

Versions: 9

Compression:

Stored size: 1.43 KB

Contents

module Datadog
  # Utils contains low-level utilities, typically to provide pseudo-random trace IDs.
  module Utils
    STRING_PLACEHOLDER = ''.encode(::Encoding::UTF_8).freeze
    # We use a custom random number generator because we want no interference
    # with the default one. Using the default prng, we could break code that
    # would rely on srand/rand sequences.

    # Return a span id
    def self.next_id
      reset! if was_forked?

      @rnd.rand(Datadog::Span::MAX_ID)
    end

    def self.reset!
      @pid = Process.pid
      @rnd = Random.new
    end

    def self.was_forked?
      Process.pid != @pid
    end

    private_class_method :reset!, :was_forked?

    reset!

    def self.truncate(value, size, omission = '...')
      string = value.to_s

      return string if string.size <= size

      string.slice(0, size - omission.size) + omission
    end

    def self.utf8_encode(str, options = {})
      str = str.to_s

      if options[:binary]
        # This option is useful for "gracefully" displaying binary data that
        # often contains text such as marshalled objects
        str.encode('UTF-8', 'binary', invalid: :replace, undef: :replace, replace: '')
      elsif str.encoding == ::Encoding::UTF_8
        str
      else
        str.encode(::Encoding::UTF_8)
      end
    rescue => e
      Tracer.log.debug("Error encoding string in UTF-8: #{e}")

      options.fetch(:placeholder, STRING_PLACEHOLDER)
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
ddtrace-0.12.0 lib/ddtrace/utils.rb
ddtrace-0.12.0.rc1 lib/ddtrace/utils.rb
ddtrace-0.11.4 lib/ddtrace/utils.rb
ddtrace-0.11.3 lib/ddtrace/utils.rb
ddtrace-0.12.0.beta2 lib/ddtrace/utils.rb
ddtrace-0.12.0.beta1 lib/ddtrace/utils.rb
ddtrace-0.11.2 lib/ddtrace/utils.rb
ddtrace-0.11.1 lib/ddtrace/utils.rb
ddtrace-0.11.0 lib/ddtrace/utils.rb