Sha256: 2f20570851a1cb7973ed44b8348b459c25eb8cfc415a07982dd3aa51cbf8b4b6
Contents?: true
Size: 810 Bytes
Versions: 4
Compression:
Stored size: 810 Bytes
Contents
# frozen_string_literal: true module ElasticAPM # @api private module Util def self.nearest_minute(target = Time.now.utc) target - target.to_i % 60 end def self.micros(target = Time.now) utc = target.utc utc.to_i * 1_000_000 + utc.usec end def self.git_sha sha = `git rev-parse --verify HEAD 2>&1`.chomp $? && $?.success? ? sha : nil # rubocop:disable Style/SpecialGlobalVars end def self.hex_to_bits(str) str.hex.to_s(2).rjust(str.size * 4, '0') end def self.reverse_merge!(first, second) first.merge!(second) { |_, old, _| old } end def self.truncate(value, max_length: 1024) return unless value return value if value.length <= max_length value[0...(max_length - 1)] + '…' end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
elastic-apm-2.2.0 | lib/elastic_apm/util.rb |
elastic-apm-2.1.2 | lib/elastic_apm/util.rb |
elastic-apm-2.1.1 | lib/elastic_apm/util.rb |
elastic-apm-2.1.0 | lib/elastic_apm/util.rb |