module ElasticAPM::Util

def self.hex_to_bits(str)

def self.hex_to_bits(str)
  str.hex.to_s(2).rjust(str.size * 4, '0')
end