Class: Datadog::Tracing::Contrib::GRPC::Integration

Inherits:
Object
  • Object
show all
Includes:
Integration
Defined in:
lib/datadog/tracing/contrib/grpc/integration.rb

Overview

Description of gRPC integration

Constant Summary collapse

MINIMUM_VERSION =
Gem::Version.new('1.7.0')

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Integration

included

Class Method Details

.compatible?Boolean

Returns:

  • (Boolean)


33
34
35
# File 'lib/datadog/tracing/contrib/grpc/integration.rb', line 33

def self.compatible?
  super && version >= MINIMUM_VERSION
end

.loaded?Boolean

Returns:

  • (Boolean)


22
23
24
25
26
27
28
29
30
31
# File 'lib/datadog/tracing/contrib/grpc/integration.rb', line 22

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

.versionObject



18
19
20
# File 'lib/datadog/tracing/contrib/grpc/integration.rb', line 18

def self.version
  Gem.loaded_specs['grpc'] && Gem.loaded_specs['grpc'].version
end

Instance Method Details

#new_configurationObject



37
38
39
# File 'lib/datadog/tracing/contrib/grpc/integration.rb', line 37

def new_configuration
  Configuration::Settings.new
end

#patcherObject



41
42
43
# File 'lib/datadog/tracing/contrib/grpc/integration.rb', line 41

def patcher
  Patcher
end