Class: Datadog::Tracing::Contrib::GRPC::Integration
- Inherits:
-
Object
- Object
- Datadog::Tracing::Contrib::GRPC::Integration
- 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
Class Method Details
.compatible? ⇒ Boolean
35 36 37 |
# File 'lib/datadog/tracing/contrib/grpc/integration.rb', line 35 def self.compatible? super && version >= MINIMUM_VERSION end |
.loaded? ⇒ Boolean
24 25 26 27 28 29 30 31 32 33 |
# File 'lib/datadog/tracing/contrib/grpc/integration.rb', line 24 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 |
.version ⇒ Object
20 21 22 |
# File 'lib/datadog/tracing/contrib/grpc/integration.rb', line 20 def self.version Gem.loaded_specs['grpc'] && Gem.loaded_specs['grpc'].version end |
Instance Method Details
#new_configuration ⇒ Object
39 40 41 |
# File 'lib/datadog/tracing/contrib/grpc/integration.rb', line 39 def new_configuration Configuration::Settings.new end |
#patcher ⇒ Object
43 44 45 |
# File 'lib/datadog/tracing/contrib/grpc/integration.rb', line 43 def patcher Patcher end |