Sha256: 32b35fb64734651216887e91557908edc18b68ae345162c05db07310c7bf9427
Contents?: true
Size: 1.66 KB
Versions: 13
Compression:
Stored size: 1.66 KB
Contents
# frozen_string_literal: true require_relative '../integration' require_relative 'configuration/settings' require_relative 'patcher' module Datadog module Tracing module Contrib module GRPC # Description of gRPC integration class Integration include Contrib::Integration MINIMUM_VERSION = Gem::Version.new('1.7.0') # @public_api Changing the integration name or integration options can cause breaking changes register_as :grpc, auto_patch: true def self.version Gem.loaded_specs['grpc'] && Gem.loaded_specs['grpc'].version end def self.loaded? !defined?(::GRPC).nil? && # When using the Google "Calendar User Availability API" # (https://developers.google.com/calendar/api/user-availability/reference/rest), though the gem # `google-cloud-calendar-useravailability-v1alpha` (currently in private preview), # it's possible to load `GRPC` without loading the rest of the `grpc` gem. See: # https://github.com/googleapis/gapic-generator-ruby/blob/f1c2e73219453e497b6ec2dc807a907e939e1342/gapic-common/lib/gapic/common.rb#L15-L16 # When this happens, there are no gRPC components of interest to instrument. !defined?(::GRPC::Interceptor).nil? && !defined?(::GRPC::InterceptionContext).nil? end def self.compatible? super && version >= MINIMUM_VERSION end def new_configuration Configuration::Settings.new end def patcher Patcher end end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems