Sha256: 0fd32a19960b723de93dec734e32d31614857a67c9da7272e52b0eb3e3621576
Contents?: true
Size: 1 KB
Versions: 4
Compression:
Stored size: 1 KB
Contents
# typed: false require 'datadog/tracing/contrib/integration' require 'datadog/tracing/contrib/grpc/configuration/settings' require 'datadog/tracing/contrib/grpc/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? 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
4 entries across 4 versions & 1 rubygems